godot/modules/gdnative/config.py
2021-08-26 23:24:44 +10:00

26 lines
466 B
Python

def can_build(env, platform):
return True
def configure(env):
pass
def get_doc_classes():
return [
"GDNative",
"GDNativeLibrary",
"MultiplayerPeerGDNative",
"NativeScript",
"PacketPeerGDNative",
"PluginScript",
"StreamPeerGDNative",
"VideoStreamGDNative",
"WebRTCPeerConnectionGDNative",
"WebRTCDataChannelGDNative",
]
def get_doc_path():
return "doc_classes"