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