mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 08:57:34 +01:00
21 lines
266 B
Python
21 lines
266 B
Python
|
|
|
|
def can_build(env, platform):
|
|
return True
|
|
#return False
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"ProceduralTreeMesh",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|
|
|
|
def get_license_file():
|
|
return "COPYRIGHT.txt"
|
|
|