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;