Exemplo n.º 1
0
 protected TerrainTile(TerrainTile other)
 {
     ID      = other.ID;
     TileTex = other.TileTex.Copy();
 }
Exemplo n.º 2
0
 protected Tile(Tile other)
 {
     Data   = other.Data.Copy();
     Effect = new EffectTile(other.Effect);
 }
Exemplo n.º 3
0
 public Tile(int type)
 {
     Data   = new TerrainTile(type);
     Effect = new EffectTile();
 }
Exemplo n.º 4
0
 public Tile(int type, Loc loc)
 {
     Data   = new TerrainTile(type);
     Effect = new EffectTile(loc);
 }
Exemplo n.º 5
0
 public Tile()
 {
     Data   = new TerrainTile();
     Effect = new EffectTile();
 }