mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 14:28:43 +00:00
Merged with develop. Fixed many bugs in Visualiser.
#bugs
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
package seng302.model.stream.parser;
|
||||
|
||||
/**
|
||||
* Class for storing data parsed from race start status packet
|
||||
*/
|
||||
public class RaceStartData {
|
||||
|
||||
private long raceId;
|
||||
private long raceStartTime;
|
||||
private int notificationType;
|
||||
private long timeStamp;
|
||||
|
||||
RaceStartData (long raceId, long raceStartTime, int notificationType, long timeStamp) {
|
||||
this.raceId = raceId;
|
||||
this.raceStartTime = raceStartTime;
|
||||
this.notificationType = notificationType;
|
||||
this.timeStamp = timeStamp;
|
||||
}
|
||||
|
||||
public long getRaceId() {
|
||||
return raceId;
|
||||
}
|
||||
|
||||
public long getRaceStartTime() {
|
||||
return raceStartTime;
|
||||
}
|
||||
|
||||
public int getNotificationType() {
|
||||
return notificationType;
|
||||
}
|
||||
|
||||
public long getTimeStamp() {
|
||||
return timeStamp;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user