From 492475a0a6899302ec4dd24aa044838584c7ab8c Mon Sep 17 00:00:00 2001 From: lvxinran Date: Fri, 12 Jun 2020 10:56:27 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=95=E7=82=BC=E5=B0=8F=E6=B8=B8=E6=88=8F?= =?UTF-8?q?=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MapInfoProto.proto | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/protos/MapInfoProto.proto b/protos/MapInfoProto.proto index 648d445..18eda87 100644 --- a/protos/MapInfoProto.proto +++ b/protos/MapInfoProto.proto @@ -335,4 +335,15 @@ import "CommonProto.proto"; message UseAddHpItemRequest{ optional string heroId = 1; } + message MapGameResponse{ + optional int32 type = 1;//游戏类型 + repeated int32 param = 2;//参数id + } + message MapGameUpdateRequest{ + optional int32 index = 1;//根据不同游戏传不同的选项 + } + message MapGameUpdateResponse{ + optional int32 gameStatus = 1;//游戏状态 是否结束 + optional Drop drop = 2;//获得奖励 + }