diff --git a/proto/Gameapi.proto b/proto/Gameapi.proto index 470d5ed3..83ae22f3 100644 --- a/proto/Gameapi.proto +++ b/proto/Gameapi.proto @@ -923,6 +923,7 @@ message ResLimitEvent{ map LimitEventList = 1; } message ResLimitEventProgress{ + int32 ProgressMax = 1; //最大进度 int32 Progress = 2; //进度 map ProgressReward = 3; //奖励 可以选择的奖励 Id =》 RewardId } @@ -1605,6 +1606,7 @@ message ResPlayroomInfo{ map flip = 10; // 翻牌 <位置, 牌> int32 Chip = 11; // 碎片 string PetName = 12; // 宠物名 + } // 请求翻牌 @@ -1619,6 +1621,14 @@ message ResPlayroomFlip{ int32 CardId = 4; // 卡牌id } +// 领取游戏奖励 +message ReqPlayroomFlipReward{} + +message ResPlayroomFlipReward{ + RES_CODE Code = 1; + string Msg = 2; +} + message ReqPlayroomGame{ int32 Type = 1; // 1:绿色 2:黄色 3:红色 }