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