config.py 341 B

123456789101112131415161718192021
  1. def can_build(env, platform):
  2. return True
  3. def configure(env):
  4. pass
  5. def get_doc_classes():
  6. return [
  7. "WebRTCPeerConnection",
  8. "WebRTCDataChannel",
  9. "WebRTCMultiplayerPeer",
  10. "WebRTCPeerConnectionExtension",
  11. "WebRTCDataChannelExtension",
  12. ]
  13. def get_doc_path():
  14. return "doc_classes"