You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
926 B
37 lines
926 B
package network.Messages;
|
|
|
|
|
|
import network.Messages.Enums.MessageType;
|
|
|
|
/**
|
|
* Created by fwy13 on 25/04/17.
|
|
*/
|
|
public class AverageWind extends AC35Data {
|
|
|
|
private int msgNum;
|
|
private long lngTime;
|
|
private int rawPeriod;
|
|
private int rawSpeed;
|
|
private int period2;
|
|
private int speed2;
|
|
private int period3;
|
|
private int speed3;
|
|
private int period4;
|
|
private int speed4;
|
|
|
|
public AverageWind(int msgNum, long lngTime, int rawPeriod, int rawSpeed, int period2, int speed2, int period3, int speed3, int period4, int speed4){
|
|
super(MessageType.AVGWIND);
|
|
this.msgNum = msgNum;
|
|
this.lngTime = lngTime;
|
|
this.rawPeriod = rawPeriod;
|
|
this.rawSpeed = rawSpeed;
|
|
this.period2 = period2;
|
|
this.speed2 = speed2;
|
|
this.period3 = period3;
|
|
this.speed3 = speed3;
|
|
this.period4 = period4;
|
|
this.speed4 = speed4;
|
|
}
|
|
|
|
}
|