mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 13:24:34 +01:00
8 lines
241 B
Python
8 lines
241 B
Python
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)
|