浏览代码

add buildingItem

ja0ck5 6 年之前
父节点
当前提交
13d206c8bc
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. 14 0
      protobuf/message.proto

+ 14 - 0
protobuf/message.proto

@@ -13,6 +13,7 @@ message Message {
         NOTIFY = 2;
         ROLEOPT = 3;
         REPORT = 4;
+        BD_ITEM = 5;
     }
 
     Type type = 1;
@@ -105,4 +106,17 @@ message Message {
 
     string msg = 6;
 
+    message BuildingItems {
+        map<string, Item> buildingItem = 1;
+    }
+
+    BuildingItems buildingItems = 7;
+
+    message Item {
+
+        int64 id = 1;
+
+        int32 count = 2;
+    }
+
 }