mirror of
https://github.com/godotengine/godot.git
synced 2024-12-04 18:14:14 +00:00
13 lines
240 B
Python
13 lines
240 B
Python
|
|
def can_build(platform):
|
|
return True
|
|
|
|
def configure(env):
|
|
env.use_ptrcall = True
|
|
|
|
def get_doc_classes():
|
|
return ["GDNative", "GDNativeLibrary", "NativeScript", "ARVRInterfaceGDNative"]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|