Esempio n. 1
0
 private static void PrintFloorPlank(MapGenerator generator, Tile tile, GeneratorCell cell)
 {
     tile.Replace(new FloorPlank());
 }
Esempio n. 2
0
 public override void Decorate(MapGenerator generator)
 {
     generator.GenerateOres(Times, Size, Tile);
 }
Esempio n. 3
0
 private static void PrintWallBrick(MapGenerator generator, Tile tile, GeneratorCell cell)
 {
     tile.Replace(new WallBrick());
 }
Esempio n. 4
0
 private static void PrintObsidiorite(MapGenerator generator, Tile tile, GeneratorCell cell)
 {
     tile.Replace(new WallObsidiorite());
 }
Esempio n. 5
0
 public abstract void Decorate(MapGenerator generator);
Esempio n. 6
0
 private static void PrintBog(MapGenerator generator, Tile tile, GeneratorCell cell)
 {
     tile.Replace(new Bog());
 }
Esempio n. 7
0
 private static void PrintDarkLava(MapGenerator generator, Tile tile, GeneratorCell cell)
 {
     tile.Replace(new DarkLava());
 }
Esempio n. 8
0
 private static void PrintWaterShallow(MapGenerator generator, Tile tile, GeneratorCell cell)
 {
     tile.Replace(new WaterShallow());
 }
Esempio n. 9
0
 private static void PrintCoral(MapGenerator generator, Tile tile, GeneratorCell cell)
 {
     tile.Replace(new FloorCave());
     tile.PlaceOn(new Coral());
 }
Esempio n. 10
0
 private static void PrintBridge(MapGenerator generator, Tile tile, GeneratorCell cell)
 {
     tile.Replace(new FloorBridge());
 }