mirror of
https://github.com/Relintai/world_generator.git
synced 2024-11-12 10:15:07 +01:00
25 lines
448 B
Python
25 lines
448 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"BiomeData",
|
|
"DungeonCorridorData",
|
|
"DungeonData",
|
|
"DungeonRoomData",
|
|
"PlanetData",
|
|
"WorldGeneratorPropData",
|
|
"BiomeData",
|
|
|
|
"Planet",
|
|
"Dungeon",
|
|
"DungeonRoom",
|
|
"DungeonCorridor",
|
|
"Biome",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes" |