赛跑活动

This commit is contained in:
hahwu 2025-03-31 15:47:46 +08:00
parent d874787f9c
commit c03c149b6b
2 changed files with 15 additions and 4 deletions

Binary file not shown.

View File

@ -367,12 +367,20 @@ message ResGetChessFromBuff{
string msg = 2;
}
enum CHESS_EX_TYPE {
CHESS_EX_NONE = 0; //
CHESS_EX_BUBBLE = 1; //
CHESS_EX_BOX = 2; //
CHESS_EX_QUICK_BUY = 3; //
CHESS_EX_EVENT = 4; //
}
//
message ReqChessEx{
int32 OldChessId = 1;
int32 NewChessId = 2;
int32 CostDia = 3;
int32 Type = 4; //1 2 3 4
CHESS_EX_TYPE Type = 4; //1 2 3 4
map<string, int32> mChessData = 5;
}
@ -1731,17 +1739,20 @@ message ResRace{
int32 Template = 4; //
int32 Pass = 5; //
int32 GameStartTime = 6; //
int32 GameEndTime = 7; //
int32 GameEndTime = 7; //
int32 Progress = 8; //
repeated raceopponent Opponent = 9; //
}
message raceopponent{
int32 Id = 1;
int32 Image = 2;
int32 Progress = 3;
int32 Face = 2;
int32 Avatar = 3;
string Name = 4;
int32 Progress = 5;
}
message ReqRaceStart{}
message ResRaceStart{
RES_CODE Code = 1;