Commit 77da751719350addb4fe59cac82ab406ad786161

Authored by zhangqijia
1 parent c2ba62f1

refactor: 把英雄所携带装备的数据结构给删除了,装备穿戴协议修改了一下。

Showing 1 changed file with 2 additions and 3 deletions   Show diff stats
models.proto
... ... @@ -47,9 +47,8 @@ message Hero {
47 47 int32 level = 4;
48 48 int32 rein_count = 5;
49 49 int32 rein_point = 6;
50   - map<string, int32> equipments = 7; //"id=pos id1=pos1"
51   - int32 exp = 8;
52   - map<int32, int32> skills = 9;
  50 + int32 exp = 7;
  51 + map<int32, int32> skills = 8;
53 52 }
54 53  
55 54 message Equipment {
... ...