diff --git a/proto/Gameapi.proto b/proto/Gameapi.proto index 46b8cae7..c68e7a47 100644 --- a/proto/Gameapi.proto +++ b/proto/Gameapi.proto @@ -2047,7 +2047,7 @@ message ResPlayroom{ repeated RoomOpponent Opponent = 3; // 对手 repeated FriendRoom Friend = 4; // 好友 map Playroom = 5; // 空间装饰 位置 =》 装饰id - repeated int32 collect = 6; // 已解锁的装饰 + repeated PlayroomCollectInfo collect = 6; // 已解锁的装饰 map Mood = 7; // 心情 <位置, 心情> repeated ItemInfo LoseItem = 8; // 损失的道具 int32 StartTime = 9; // 开始时间 @@ -2059,7 +2059,7 @@ message ResPlayroom{ map Physiology = 15; map Dress = 16; // 服装仓库 位置 =》 服装id 位置ID: 1 帽子 2 眼镜 3 上衣 4 裤子 5 鞋子 6 连体 7 胡子 8 脸 9 美瞳 map DressSet = 17; // 服装装饰 位置 =》 服装id - repeated int32 PetAir = 18; // 宠物背包 + repeated PlayroomAirInfo PetAir = 18; // 宠物背包 int32 PetAirSet = 19; // 宠物背包设置 int32 Upvote = 20; // 点赞次数 int32 RoomPoint = 21; // 房间积分 @@ -2131,6 +2131,21 @@ message PlayroomDressInfo{ string Label = 4; // 标签 } + +message PlayroomAirInfo{ + int32 Id = 1; // 服装id + int64 EndTime = 2; // 结束时间 + int64 AddTime = 3; // 添加时间 + string Label = 4; // 标签 +} + +message PlayroomCollectInfo{ + int32 Id = 1; // 服装id + int64 EndTime = 2; // 结束时间 + int64 AddTime = 3; // 添加时间 + string Label = 4; // 标签 +} + message ReqPlayroomDressSet{ map DressSet = 1; // 服装装饰 位置 =》 服装id }