master_huanxiang
wangyuan 2019-08-17 10:51:03 +08:00
parent 03bef9616c
commit 546dbab55f
3 changed files with 15 additions and 2 deletions

View File

@ -164,7 +164,7 @@ option optimize_for = SPEED;
optional int32 positionId = 1; //
optional int32 level =2; //
optional int32 stateTime = 3 ; //
optional AdventureBossSimpleInfo adventureBossSimpleInfo =4;
repeated AdventureBossSimpleInfo adventureBossSimpleInfo =4;
}
message TeamHeroInfo{

View File

@ -102,7 +102,6 @@ import "CommonProto.proto";
message GetAdventureStateInfoResponse{
repeated AdventureStateInfo adventureStateInfoList = 1;
optional int32 nextBossFlushTime = 2; //boss(boss ADVENTURE_FLUSH_BOSS_REQUEST)
}
@ -160,6 +159,11 @@ import "CommonProto.proto";
}
message AdventureBossKillIndication{
optional int32 pos = 1; //
optional string bossId=2;// bossId
}
message AdventureBossShareRequest{
optional string bossId =1 ; // bossId
}
@ -181,5 +185,9 @@ import "CommonProto.proto";
optional int32 type =1; // 0 1
}
message AdventureCallBossResponse{
optional AdventureBossSimpleInfo adventureBossInfo =1; // bosss
}

View File

@ -76,6 +76,11 @@ enum MessageType{
ACTIVITY_UPDATE_INDICATION = 10051 ;//
ACTIVITY_UPDATE_PROGRESS_INDICATION = 10052 ;//
ADVENTURE_BOSS_KILL_INDICATION = 10053; //boss
ADVENTURE_CALL_BOSS_REQUEST = 1; // boss
ADVENTURE_CALL_BOSS_RESPONSE = 2;
// B 10100
BUY_STORE_ITEM_REQUEST = 10100; //
BUY_STORE_ITEM_RESPONSE = 10101;