Esempio n. 1
0
 //TODO: eventually this function will take arguments for the constructor: grid size, etc.
 public static void CreateGrid()
 {
     instance = new Grid();
 }
Esempio n. 2
0
 public GridSquare(int x, int y, Grid grid)
 {
     this.x = x;
     this.y = y;
     this.grid = grid;
 }