Exemple #1
0
 public static bool UnbreachableRoofed(this RoofGrid grid, IntVec3 c)
 {
     return(grid.UnbreachableRoofed(grid.RoofAt(c)));
 }
Exemple #2
0
 public static bool UnbreachableRoofed(this RoofGrid grid, int x, int z)
 {
     return(grid.UnbreachableRoofed(grid.RoofAt(x, z)));
 }
Exemple #3
0
 public static bool UnbreachableRoofed(this RoofGrid grid, int index)
 {
     return(grid.UnbreachableRoofed(grid.RoofAt(index)));
 }