Exemplo n.º 1
0
 public FireResponse(Board.playerType turn, Ship.ShipState state)
 {
     this.wonGame = false;
     this.state   = state;
 }
Exemplo n.º 2
0
 public void Hit()
 {
     State = Ship.ShipState.hit;
     Ship.Hit();
 }
Exemplo n.º 3
0
 public void Sunk()
 {
     State = Ship.ShipState.sunk;
 }
Exemplo n.º 4
0
 public Deck(Int2 position)
 {
     Position = position;
     State    = Ship.ShipState.fine;
 }