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