Beispiel #1
0
 public bool CheckAtPosition(double x, double y, LevelTileTypes tile)
   => LevelGrid.Matches(this.GetAtPosition(x, y), tile);
Beispiel #2
0
 public bool CheckAtIndex(int c, int r, LevelTileTypes tile)
   => LevelGrid.Matches(this.GetAtIndex(c, r), tile);