From 0bde22da58c3ff1adffd496ae9f15a82e292e262 Mon Sep 17 00:00:00 2001 From: hahwu <31872165+hahwu@users.noreply.github.com> Date: Mon, 10 Mar 2025 15:58:27 +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 --- proto/Gameapi.proto | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/proto/Gameapi.proto b/proto/Gameapi.proto index ef12e0c6..ec62cf93 100644 --- a/proto/Gameapi.proto +++ b/proto/Gameapi.proto @@ -573,6 +573,15 @@ message ResDelOrder{ string Msg = 2; } +// 获取出售棋子获得的星星数量 +message ReqSellChessNum{ + int32 ChessId = 1; +} + +message ResSellChessNum{ + int32 Num = 1; +} + message Order{ int32 Id = 1; repeated int32 ChessId = 2; @@ -1949,6 +1958,7 @@ message ResCollect{ string Msg = 2; } + // -------------------后台管理------------------- message AdminReq{ string Func = 1;