mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 21:34:43 +01:00
Initial commit
This commit is contained in:
13
hi3
Normal file
13
hi3
Normal file
@@ -0,0 +1,13 @@
|
||||
from game_server.config import *
|
||||
from sdk_server import HandleSdkServer,HandleSslSdkServer
|
||||
from game_server import GameServer
|
||||
|
||||
SdkThread = threading.Thread(target=HandleSdkServer, args=(Config.GameServer.Ip, Config.GameServer.Port, Config.SdkServer.Port))
|
||||
SdkThreadSsl = threading.Thread(target=HandleSslSdkServer)
|
||||
SdkThread.start()
|
||||
SdkThreadSsl.start()
|
||||
|
||||
|
||||
gameserver = GameServer()
|
||||
GameThread = threading.Thread(target=gameserver.main, args=(Config.GameServer.Ip, Config.GameServer.Port))
|
||||
GameThread.start()
|
||||
Reference in New Issue
Block a user