Exemplo n.º 1
0
 public ITile GetFloorTile(int x, int y)
 {
     return(FloorTiles.SingleOrDefault(t => x >= 0 && y >= 0 && t.X == x && t.Y == y));
 }