mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-19 10:26:54 +01:00
17 lines
188 B
Python
17 lines
188 B
Python
def can_build(env, platform):
|
|
return False
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"GridMap",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|