Datasets:
ArXiv:
License:
//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; | |
} | |
} | |