Exemplo n.º 1
0
 public Move(Player player, CellCoordinats coordinats)
 {
     this.player     = player;
     this.coordinats = coordinats;
 }
Exemplo n.º 2
0
 public bool Equals(CellCoordinats cell)
 {
     return((cell.X == this.X) && (cell.Y == this.Y));
 }