Files
engine/modules/webrtc/config.py
T

21 lines
341 B
Python
Raw Normal View History

2018-11-20 10:54:15 +01:00
def can_build(env, platform):
return True
2018-11-20 10:54:15 +01:00
def configure(env):
pass
2018-11-20 10:54:15 +01:00
def get_doc_classes():
return [
"WebRTCPeerConnection",
2019-06-03 15:20:15 +02:00
"WebRTCDataChannel",
"WebRTCMultiplayerPeer",
2021-09-08 01:00:47 +02:00
"WebRTCPeerConnectionExtension",
"WebRTCDataChannelExtension",
2018-11-20 10:54:15 +01:00
]
2018-11-20 10:54:15 +01:00
def get_doc_path():
return "doc_classes"