更新协议

This commit is contained in:
hahwu 2024-11-25 10:23:15 +08:00
parent 194f87eaf3
commit 9281fb98b5
2 changed files with 20 additions and 4 deletions

View File

@ -183,8 +183,16 @@ message BaseInfo {
int32 EenegyMul = 1;
bool IsFirstBuy = 2; // 是否已第一次购买体力商店
int32 EnergyBuy = 3; // 今日体力商店购买次数
int32 Uid = 4;
string nickname = 5;
}
message UserInfo {
int32 Uid = 1; // Uid
string Nickname = 2; // 昵称
int32 Avatar = 3; // 头像框
int32 Face = 4; // 头像
int32 DecorateCnt = 5; // 总装饰次数
repeated AvatarInfo AvatarList = 6; // 解锁头像框
repeated FaceInfo FaceList = 7; // 解锁头像
}
// 设置昵称

View File

@ -2296,8 +2296,16 @@ message BaseInfo {
int32 EnergyMul = 1; //
bool IsFirstBuy = 2; //
int32 EnergyBuy = 3; //
int32 Uid = 4; // Uid
string nickname = 5; //
}
message UserInfo {
int32 Uid = 1;
string Nickname = 2;
int32 Avatar = 3;
int32 Face = 4;
int32 DecorateCnt = 5;
repeated AvatarInfo AvatarList = 6;
repeated FaceInfo FaceList = 7;
}
//