更新配置

This commit is contained in:
hahwu 2024-11-25 17:22:32 +08:00
parent cc8c20a66a
commit 23a1cd3cbd
5 changed files with 24 additions and 3 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -339,6 +339,17 @@ message ResNotifyCard{
map<int32, int32> Card = 1; // 卡牌
}
// 万能卡兑换
message ReqMasterCard{
int32 Id = 1; // 万能卡id 6 普通 7 金卡
int32 CardId = 2; // 兑换的卡id
}
message ResMasterCard{
RES_CODE Code = 1;
string Msg = 2;
}
// 领取卡牌系列收集奖励
message ReqCardCollectReward{
int32 Color = 1;
@ -718,10 +729,9 @@ message ReqSearchPlayer{
}
message ResSearchPlayer{
RES_CODE Code = 1;
string Msg = 2;
int32 Code = 1; // 0
repeated ResPlayerSimple List = 2;
}
// 好友推荐
message ReqFriendRecommend{}

View File

@ -2410,6 +2410,17 @@ message ResCardInfo{
repeated int32 ExUid = 10; // Uid
}
//
message ReqMasterCard{
int32 Id = 1; // id 6 7
int32 CardId = 2; // id
}
message ResMasterCard{
RES_CODE Code = 1;
string Msg = 2;
}
//
message ReqCardCollectReward{
int32 Color = 1;