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