协议提交
parent
87f93324d6
commit
34c93b9b68
|
@ -63,6 +63,7 @@ option optimize_for = SPEED;
|
|||
optional int32 rebuildLevel = 5; //重铸等级
|
||||
optional int32 createTime = 6;//入手时间
|
||||
optional int32 skillId = 7;//装备附带技能
|
||||
optional int32 isLocked = 8; //是否被锁定 1:被锁定 0:未锁定
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -123,6 +123,8 @@ enum MessageType{
|
|||
EVENT_UPDATE_REQUEST = 10406; // 更新事件
|
||||
EVENT_UPDATE_RESPONSE = 10407;
|
||||
|
||||
EQUIP_LOCK_REQUEST = 10408; //装备锁定
|
||||
EQUIP_LOCK_RESPONSE = 10409;
|
||||
// F 10500
|
||||
FIGHT_START_REQUEST = 10500; //
|
||||
FIGHT_START_RESPONSE = 10501;
|
||||
|
|
|
@ -401,5 +401,9 @@ import "CommonProto.proto";
|
|||
message storeUpdateIndication{
|
||||
repeated StoreInfo storeInfo =1;
|
||||
}
|
||||
|
||||
//装备锁定
|
||||
message LockEquip{
|
||||
repeated string id = 1;
|
||||
optional int32 type = 2;//1:锁定操作 2:解锁操作
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue