Commit a5d277364ded61191ac3359490a95fd86940cb15

Authored by zhangqijia
1 parent 42e60d79

fix: notify equipment add

Showing 3 changed files with 7 additions and 0 deletions   Show diff stats
game.proto
... ... @@ -54,4 +54,9 @@ message RoleUpdatePropertyRsp {
54 54 //ResponseCmd RoleUpdateItemsRsp
55 55 message RoleUpdateItemsRsp {
56 56 string items = 1;
  57 +}
  58 +
  59 +//ResponseCmd EquipmentAddRsp
  60 +message EquipmentAddRsp {
  61 + models.Equipment equip = 1;
57 62 }
58 63 \ No newline at end of file
... ...
models.proto
... ... @@ -26,6 +26,7 @@ message Equipment {
26 26 string type = 3;
27 27 int32 enhance_level = 4;
28 28 string hero_id = 5;
  29 + int32 quality = 6;
29 30 }
30 31  
31 32 message Prop {
... ...
protocode.proto
... ... @@ -16,5 +16,6 @@ enum ProtoCode
16 16 RoleRsp = 8;
17 17 RoleUpdatePropertyRsp = 9;
18 18 RoleUpdateItemsRsp = 10;
  19 + EquipmentAddRsp = 11;
19 20  
20 21 }
21 22 \ No newline at end of file
... ...