Example #1
0
 public static void InitializeCustomCells(int width, int height, EmberCell[] cells)
 {
     Grid = new EmberGrid(width, height, cells);
 }
Example #2
0
 public static void InitializeCustomGrid(EmberGrid grid)
 {
     Grid = grid;
 }
Example #3
0
 public static void InitializeBlueprint <T>() where T : Blueprint <EmberCell>, new()
 {
     Grid = new EmberGrid(new T());
 }