feat: Implement commands (help,rank,maxskill)

This commit is contained in:
Naruse
2024-11-18 16:22:42 +08:00
parent c9870f5d66
commit b8998ee11d
8 changed files with 254 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
from game_server.net.gateway import Gateway
from game_server.game.chat.command_handler import handler
class GameServer:
def main(self, ServerIp, GameServerPort):
handler.load_commands()
Gateway(ServerIp, GameServerPort)