Esempio n. 1
0
 protected MapGenExit(MapGenExit other)
 {
     Loc  = other.Loc;
     Tile = (EffectTile)other.Tile.Copy();
 }
Esempio n. 2
0
        void IPlaceableGenContext <MapGenExit> .PlaceItem(Loc loc, MapGenExit item)
        {
            MapGenExit newItem = new MapGenExit(loc, new EffectTile(item.Tile));

            GenExits.Add(newItem);
        }