2024-04-10 00:28:21 +08:00
|
|
|
from .Login import *
|
2024-04-11 01:34:16 +08:00
|
|
|
from .Session_server import *
|
|
|
|
|
|
|
|
|
|
|
|
class Client_main(LoginFrame, Session_server):
|
2024-04-12 00:56:58 +08:00
|
|
|
def __init__(self):
|
|
|
|
Session_server.__init__(self) # 与服务器会话
|
2024-04-11 01:34:16 +08:00
|
|
|
LoginFrame.__init__(self)
|
|
|
|
|
|
|
|
|
2024-04-12 00:56:58 +08:00
|
|
|
|
|
|
|
|