master_assist
parent
202de0c6ec
commit
ae3e62e60e
|
@ -1386,4 +1386,11 @@ option optimize_for = SPEED;
|
||||||
// message ArenaRoom{
|
// message ArenaRoom{
|
||||||
// optional int32 id = 1;//房间id
|
// optional int32 id = 1;//房间id
|
||||||
// optional string name = 2;//房间名称
|
// optional string name = 2;//房间名称
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
// 助阵盒子
|
||||||
|
message AssistBox{
|
||||||
|
optional int32 id = 1;
|
||||||
|
optional int32 state = 2;
|
||||||
|
optional string heroId = 3;
|
||||||
|
}
|
|
@ -731,4 +731,16 @@ message TrainingArchitectureInfoRequest{
|
||||||
|
|
||||||
message TrainingArchitectureInfoResponse{
|
message TrainingArchitectureInfoResponse{
|
||||||
repeated TrainingArchitectureInfo infos = 1;//建筑属性
|
repeated TrainingArchitectureInfo infos = 1;//建筑属性
|
||||||
|
}
|
||||||
|
|
||||||
|
// 助阵
|
||||||
|
message AssistInfoRequest{
|
||||||
|
}
|
||||||
|
message AssistInfoResponse{
|
||||||
|
repeated AssistBox boxs = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message AssistUpDownRequest{
|
||||||
|
optional int32 id = 1;
|
||||||
|
optional string heroId = 2;
|
||||||
}
|
}
|
|
@ -1690,6 +1690,13 @@ enum MessageType{
|
||||||
NewArenaFirstIndication = 6000043;
|
NewArenaFirstIndication = 6000043;
|
||||||
NewArenaResetRequest = 6000044;
|
NewArenaResetRequest = 6000044;
|
||||||
NewArenaResetResponse = 6000045;
|
NewArenaResetResponse = 6000045;
|
||||||
|
|
||||||
|
// 助阵系统
|
||||||
|
AssistInfoRequest = 7000001;
|
||||||
|
AssistInfoResponse = 7000002;
|
||||||
|
AssistUpDownRequest = 7000003;
|
||||||
|
AssistUpDownResponse = 7000004;
|
||||||
|
AssistInfoIndication = 7000005;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue