Example #1
0
 bool RoomCheck(int x, int y, int [,] map)
 {
     return(LevelGen.IsInGrid(x, y, map) && map[x, y] != 0);
 }