更新playroom协议

This commit is contained in:
hahwu 2024-12-10 17:27:09 +08:00
parent 2becf2c505
commit dddfea9241
2 changed files with 25 additions and 0 deletions

View File

@ -1368,6 +1368,7 @@ message ResPlayroom{
int32 StartTime = 9; // 开始时间
int32 WorkStatus = 10; // 1 工作中 2 休息中
int32 AllMood = 11; // 总心情
int32 Chip = 12; // 碎片
}
message NotifyPlayroomWork{
@ -1395,6 +1396,8 @@ message RoomOpponent{
int32 LastTime = 5; // 上次被攻击时间
}
// 请求拜访空间信息
message ReqPlayroomInfo{
int32 Uid = 1;
@ -1477,6 +1480,14 @@ message ResPlayroomDraw{
int32 Id = 3; // 奖励Id
}
message ReqPlayroomChip{
int32 Num = 1; // 要消除的层数
}
message ResPlayroomChip{
RES_CODE Code = 1;
string Msg = 2;
}
```
## 后台

View File

@ -3352,6 +3352,8 @@ message ResRaceReward{
string Msg = 2;
}
//--------------------------playroom--------------------------
message ReqPlayroom{} //
message ResPlayroom{
@ -3366,6 +3368,7 @@ message ResPlayroom{
int32 StartTime = 9; //
int32 WorkStatus = 10; // 1 2
int32 AllMood = 11; //
int32 Chip = 12; //
}
message NotifyPlayroomWork{
@ -3393,6 +3396,8 @@ message RoomOpponent{
int32 LastTime = 5; //
}
// 访
message ReqPlayroomInfo{
int32 Uid = 1;
@ -3473,4 +3478,13 @@ message ResPlayroomDraw{
RES_CODE Code = 1;
string Msg = 2;
int32 Id = 3; // Id
}
message ReqPlayroomChip{
int32 Num = 1; //
}
message ResPlayroomChip{
RES_CODE Code = 1;
string Msg = 2;
}