mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-03 18:05:39 +01:00
17 lines
200 B
Python
17 lines
200 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"AudioStreamOGGVorbis",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|