world_generator/config.py

19 lines
281 B
Python
Raw Permalink Normal View History

2019-04-20 14:51:33 +02:00
def can_build(env, platform):
return True
def configure(env):
pass
2019-12-25 14:08:42 +01:00
def get_doc_classes():
return [
"WorldGeneratorPropData",
"Planet",
"Building",
2019-12-25 14:08:42 +01:00
"Biome",
"WorldGenerator",
2019-12-25 14:08:42 +01:00
]
def get_doc_path():
return "doc_classes"