From c2eb1b4e406599d4cc5d5819932c5da23a0fb294 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Mon, 10 Aug 2020 17:30:14 +0800 Subject: [PATCH] 1 --- server/tools/protobuild/cs_msgid.proto | 1 + server/tools/protobuild/cs_proto.proto | 11 ++++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/server/tools/protobuild/cs_msgid.proto b/server/tools/protobuild/cs_msgid.proto index 89b8938..af22af2 100644 --- a/server/tools/protobuild/cs_msgid.proto +++ b/server/tools/protobuild/cs_msgid.proto @@ -38,4 +38,5 @@ enum SMMessageId_e _SMDebugMsg = 1010; _SMWxVoip = 1011; _SMUiUpdate = 1012; + _SMGameStart = 1013; } diff --git a/server/tools/protobuild/cs_proto.proto b/server/tools/protobuild/cs_proto.proto index fe63cee..c5cdd24 100755 --- a/server/tools/protobuild/cs_proto.proto +++ b/server/tools/protobuild/cs_proto.proto @@ -413,6 +413,9 @@ message MFObjectFull optional MFProjectileFull union_obj_8 = 9; optional MFSmokeFull union_obj_9 = 10; optional MFHeroFull union_obj_10 = 11; + + optional int32 obj_uniid = 14; //唯一id + optional int32 object_flags = 15; //对象标志位 1<<0: 存缓存 1<<1:读缓存 } //活跃玩家数据(当前) @@ -887,4 +890,10 @@ message SMUiUpdate optional int32 alive_count = 1; //存活数量 optional int32 kill_count = 2; //击杀数 repeated MFCar car_list = 3; //载具列表 -} \ No newline at end of file +} + +//游戏开始 +message SMGameStart +{ +} +