예제 #1
0
파일: GTile.cs 프로젝트: dav793/2D-Survival
 public GTile(int index_x, int index_y)
 {
     this.index_x = index_x;
     this.index_y = index_y;
     biome = BiomeData.tropical_forest;
     Contained_Objects = new GObject_Tile_RefList (new Vector2(index_x, index_y));
 }
예제 #2
0
 public GTile(int index_x, int index_y)
 {
     this.index_x      = index_x;
     this.index_y      = index_y;
     biome             = BiomeData.tropical_forest;
     Contained_Objects = new GObject_Tile_RefList(new Vector2(index_x, index_y));
 }