From a186e4a490116a0ad043125c9f55b31d4426e6ff Mon Sep 17 00:00:00 2001 From: tiger_zhou Date: Mon, 26 Feb 2024 17:27:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A7=E8=B5=9B=E7=AE=A1=E7=90=86=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proto/race/race_paper.proto | 2 ++ proto/race/race_scene.proto | 1 + 2 files changed, 3 insertions(+) diff --git a/proto/race/race_paper.proto b/proto/race/race_paper.proto index 39e95e6..7888cd3 100644 --- a/proto/race/race_paper.proto +++ b/proto/race/race_paper.proto @@ -41,7 +41,9 @@ message RacePaperModuleVO{ message PaperModule{ string module_name = 1; int32 duration = 2; + repeated Group group = 3; //任务分组(此分组目前看仅为称呼) + int64 module_score_rule_id = 4; } //分组 message Group{ diff --git a/proto/race/race_scene.proto b/proto/race/race_scene.proto index ccb0c7c..18fc338 100644 --- a/proto/race/race_scene.proto +++ b/proto/race/race_scene.proto @@ -45,6 +45,7 @@ message StorageSimulation { string step_json = 2; string member_json = 3; repeated string player_ids = 4; + string scoring_rule_json = 5; }