godot/modules/multiplayer/config.py
Fabio Alessandrelli f511ef26f1 [MP] Move OfflineMultiplayerPeer docs to the module
Was missing from the module config, causing the XML to be added to the
main doc folder
2024-11-27 13:18:33 +01:00

21 lines
329 B
Python

def can_build(env, platform):
return True
def configure(env):
pass
def get_doc_classes():
return [
"SceneReplicationConfig",
"SceneMultiplayer",
"MultiplayerSpawner",
"MultiplayerSynchronizer",
"OfflineMultiplayerPeer",
]
def get_doc_path():
return "doc_classes"