mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 17:07:20 +01:00
27 lines
379 B
Python
27 lines
379 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"WaveFormCollapse",
|
|
"TilingWaveFormCollapse",
|
|
"OverlappingWaveFormCollapse",
|
|
"ImageIndexer",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|
|
|
|
|
|
def is_enabled():
|
|
return True
|
|
|
|
def get_license_file():
|
|
return "COPYRIGHT.txt"
|