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,36 @@
|
||||
package seng302.model.stream.parser;
|
||||
|
||||
|
||||
/**
|
||||
* Simple data wrapper for mark rounding data packet.
|
||||
*/
|
||||
public class MarkRoundingData {
|
||||
|
||||
private int boatId;
|
||||
private int markId;
|
||||
private int roundingSide;
|
||||
private long timeStamp;
|
||||
|
||||
MarkRoundingData(int boatId, int markId, int roundingSide, long timeStamp) {
|
||||
this.boatId = boatId;
|
||||
this.markId = markId;
|
||||
this.roundingSide = roundingSide;
|
||||
this.timeStamp = timeStamp;
|
||||
}
|
||||
|
||||
public int getBoatId() {
|
||||
return boatId;
|
||||
}
|
||||
|
||||
public int getMarkId() {
|
||||
return markId;
|
||||
}
|
||||
|
||||
public int getRoundingSide() {
|
||||
return roundingSide;
|
||||
}
|
||||
|
||||
public long getTimeStamp() {
|
||||
return timeStamp;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user