mirror of
https://github.com/godotengine/godot
synced 2024-11-02 11:20:21 +00:00
17 lines
234 B
Python
17 lines
234 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"OggPacketSequence",
|
|
"OggPacketSequencePlayback",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|