godot/modules/webrtc/config.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
341 B
Python
Raw Normal View History

def can_build(env, platform):
return True
def configure(env):
pass
def get_doc_classes():
return [
"WebRTCPeerConnection",
2019-06-03 13:20:15 +00:00
"WebRTCDataChannel",
"WebRTCMultiplayerPeer",
"WebRTCPeerConnectionExtension",
"WebRTCDataChannelExtension",
]
def get_doc_path():
return "doc_classes"