Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
383 Bytes
//Csaba
package battleship.Logic;
import battleship.DataPackage.PlaceShipsData;
/**
*
* @author Csaba
*/
public class Player {
int identifier;
boolean ready = false;
Board board;
public Player() {
board = new Board();
}
public int getIdentifier() {
return identifier;
}
public Board getBoard() {
return board;
}
}