Exemplo n.º 1
0
 public TileContainer(TerrainEntity terrain, ISpecialEntity special)
 {
     this.specialEntity = special;
     this.terrain       = terrain;
     this.growable      = null;
     this.building      = null;
 }
Exemplo n.º 2
0
 public TileContainer(TerrainEntity terrain, GrowableIncarnation growable, BuildingIncarnation building)
 {
     this.specialEntity = null;
     this.terrain       = terrain;
     this.growable      = growable;
     this.building      = building;
 }