Merge branch 'master' of 60.1.1.230:backend/jieling_protocol

master_huanxiang
wangyuan 2019-03-19 17:47:26 +08:00
commit 9e0c1d726b
5 changed files with 14 additions and 1 deletions

View File

@ -107,6 +107,7 @@ option optimize_for = SPEED;
optional int32 itemId = 1;
optional string state = 2;
optional int32 missionStep = 3;
optional bool isOpen = 4;
}

View File

@ -37,7 +37,10 @@ import "CommonProto.proto";
}
//
message FightEndRequest {
optional int32 monsterGroupId = 1; // id
// id
optional int32 monsterGroupId = 1;
// 14#1#0
repeated string frames = 2;
}
message FightEndResponse {
//

View File

@ -49,6 +49,8 @@ import "CommonProto.proto";
repeated HeroFightInfo heroFightInfos = 5;
//
repeated Monster monsterList = 6;
//
optional int32 leftStep = 7;
}
//

View File

@ -114,6 +114,9 @@ enum MessageType{
MISSION_TAKE_REWARD_REQUEST = 11212; //
MISSION_TAKE_REWARD_RESPONSE = 11213;
MISSION_OPEN_REQUEST = 11214; //
MISSION_OPEN_RESPONSE = 11215;
// N 11300
// O 11400
// P 11500

View File

@ -17,3 +17,7 @@ import "CommonProto.proto";
optional Drop Drop = 1;
}
//
message OpenMissionRequest{
optional int32 missionId = 1; // id
}