18 lines
276 B
Python
18 lines
276 B
Python
|
|
def can_build(platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"WebSocketClient",
|
|
"WebSocketMultiplayerPeer",
|
|
"WebSocketPeer",
|
|
"WebSocketServer"
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|