零件协议

This commit is contained in:
hahwu 2025-08-22 16:46:58 +08:00
parent db5c922eb4
commit adce6269d4

View File

@ -403,6 +403,26 @@ message ResPlayerChessInfo{
ChessBag ChessBag = 3;
repeated string RetireEmit = 4;
repeated int32 Honor = 5;
PartBag PartBag = 6;
}
message PartBag{
repeated PartBagGrid PartBagGrids = 1; //
}
message PartBagGrid{
int32 PartId = 1; //ID
int32 Count = 2; //
}
message ReqPutPartInBag{
int32 ChessId = 1; //ID
map<string, int32> mChessData = 2;
}
message ResPutPartInBag{
RES_CODE code = 1;
string msg = 2;
}