public Cell(int x, int y, BattleField field) { this.x = x; this.y = y; this.parent = field; }
public Model() { playerField = new PlayerField(); AIField = new AIField(); }