2018-11-20 09:54:15 +00:00
|
|
|
def can_build(env, platform):
|
|
|
|
return True
|
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2018-11-20 09:54:15 +00:00
|
|
|
def configure(env):
|
|
|
|
pass
|
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2018-11-20 09:54:15 +00:00
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
2019-05-10 23:46:27 +00:00
|
|
|
"WebRTCPeerConnection",
|
2019-06-03 13:20:15 +00:00
|
|
|
"WebRTCDataChannel",
|
2021-07-12 14:26:37 +00:00
|
|
|
"WebRTCMultiplayerPeer",
|
2021-09-07 23:00:47 +00:00
|
|
|
"WebRTCPeerConnectionExtension",
|
|
|
|
"WebRTCDataChannelExtension",
|
2018-11-20 09:54:15 +00:00
|
|
|
]
|
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2018-11-20 09:54:15 +00:00
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|