24 lines
668 B
Python
24 lines
668 B
Python
import betterproto
|
|
from game_server.net.session import PlayerSession
|
|
from rail_proto.lib import (
|
|
GetBasicInfoCsReq,
|
|
GetBasicInfoScRsp,
|
|
PlayerSettingInfo
|
|
)
|
|
|
|
async def handle(session: PlayerSession, msg: GetBasicInfoCsReq) -> betterproto.Message:
|
|
return GetBasicInfoScRsp(
|
|
retcode=0,
|
|
player_setting_info=PlayerSettingInfo(
|
|
mmmnjchemfn=True,
|
|
kapdimgjlnf=True,
|
|
ilfalcdlaol=True,
|
|
gmjanojmkce=True,
|
|
pbkbglhhkpe=True,
|
|
nkekibnjmpa=True,
|
|
kjncckhjfhe=True,
|
|
aicnfaobcpi=True,
|
|
aponeidmphl=True,
|
|
njfmiljofok=True
|
|
)
|
|
) |