Datasets:
ArXiv:
License:
File size: 339 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 24 |
//Csaba
package battleship.DataPackage;
import battleship.Logic.Board;
/**
*
* @author nycs0
*/
public class PlaceShipsData extends Data {
Board board;
public PlaceShipsData(int clientID, Board board) {
super(clientID);
this.board = board;
}
public Board getBoard() {
return board;
}
}
|