无尽副本小地图信息
parent
c2e67f9668
commit
40ce4b02c0
|
|
@ -591,4 +591,9 @@ option optimize_for = SPEED;
|
||||||
message EndlessInfo{
|
message EndlessInfo{
|
||||||
optional int32 mapId = 1;
|
optional int32 mapId = 1;
|
||||||
optional int32 worldLevel = 2;
|
optional int32 worldLevel = 2;
|
||||||
|
}
|
||||||
|
//无尽副本小地图点信息
|
||||||
|
message EndlessPoint{
|
||||||
|
optional int32 location = 1;
|
||||||
|
optional int32 monsterId = 2;
|
||||||
}
|
}
|
||||||
|
|
@ -287,3 +287,8 @@ import "CommonProto.proto";
|
||||||
message EndlessTimeIndication{
|
message EndlessTimeIndication{
|
||||||
repeated EndlessRefreshInfo infos = 1;
|
repeated EndlessRefreshInfo infos = 1;
|
||||||
}
|
}
|
||||||
|
//无尽副本小地图信息
|
||||||
|
message EndlessMinMapResponse{
|
||||||
|
optional int32 myXY = 1;
|
||||||
|
repeated EndlessPoint points = 2;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -151,6 +151,9 @@ enum MessageType{
|
||||||
|
|
||||||
ENDLESS_REFRESH_INDICAITON = 10420;//无尽副本推送刷新时间
|
ENDLESS_REFRESH_INDICAITON = 10420;//无尽副本推送刷新时间
|
||||||
|
|
||||||
|
ENDLESS_MIN_MAP_INFO_REQUEST = 10421;//无尽副本小地图信息
|
||||||
|
ENDLESS_MIN_MAP_INFO_RESPONSE = 10422;
|
||||||
|
|
||||||
// F 10500
|
// F 10500
|
||||||
FIGHT_START_REQUEST = 10500; //
|
FIGHT_START_REQUEST = 10500; //
|
||||||
FIGHT_START_RESPONSE = 10501;
|
FIGHT_START_RESPONSE = 10501;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue