Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
339 Bytes
//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;
}
}