Datasets:
ArXiv:
License:
File size: 401 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
//Csaba
package battleship.DataPackage;
/**
*
* @author Csaba
*/
public class GameEndedData extends Data {
GameEndedStatus status;
public GameEndedData(GameEndedStatus status, int recipientID) {
super(-1);
this.status = status;
super.recipientID = recipientID;
}
public GameEndedStatus getStatus() {
return status;
}
}
|