From 7034f3e818e3a6c1f0f7799145160aa576cdfd4f Mon Sep 17 00:00:00 2001 From: hahwu <31872165+hahwu@users.noreply.github.com> Date: Mon, 25 Nov 2024 17:56:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- makedown/optimization.md | 7 +++++++ proto/Gameapi.proto | 11 +++++++++++ 2 files changed, 18 insertions(+) diff --git a/makedown/optimization.md b/makedown/optimization.md index fc5aa15e..e7d7e845 100644 --- a/makedown/optimization.md +++ b/makedown/optimization.md @@ -260,6 +260,13 @@ message ResDecorateInfo { int32 AreaId = 1; // 区域id repeated int32 mFinishList = 2; //当前区域已完成装饰id } +// 一键装饰 +message ReqDecorateAll{} + +message ResDecorateAll{ + RES_CODE Code = 1; + string Msg = 2; +} ``` diff --git a/proto/Gameapi.proto b/proto/Gameapi.proto index 21370679..cbd88220 100644 --- a/proto/Gameapi.proto +++ b/proto/Gameapi.proto @@ -2385,6 +2385,17 @@ message ResDecorate{ string Msg = 2; } +// 一键装饰 +message ReqDecorateAll{ + +} + +message ResDecorateAll{ + RES_CODE Code = 1; + string Msg = 2; +} + + // 请求Gm命令 message ReqGmCommand{ string Command = 1;