/** * 登录请求消息 */ export interface MsgReqLogin { /** 玩家ID(用于识别玩家) */ playerId: string; /** 玩家昵称(可选,新玩家时使用) */ playerName?: string; }