示例#1
0
文件: Grid.cs 项目: iblaauw/Aegis2
 //TODO: eventually this function will take arguments for the constructor: grid size, etc.
 public static void CreateGrid()
 {
     instance = new Grid();
 }
示例#2
0
文件: Grid.cs 项目: iblaauw/Aegis2
 public GridSquare(int x, int y, Grid grid)
 {
     this.x = x;
     this.y = y;
     this.grid = grid;
 }