From bfc7d753a443f4cabd917e08908ec9e195b62f8d Mon Sep 17 00:00:00 2001 From: lightyears Date: Wed, 22 Feb 2023 11:54:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=BD=E8=B1=A1=20Planner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Models/Base/Planner.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Models/Base/Planner.cs diff --git a/Models/Base/Planner.cs b/Models/Base/Planner.cs new file mode 100644 index 0000000..7a03331 --- /dev/null +++ b/Models/Base/Planner.cs @@ -0,0 +1,14 @@ +namespace CMSGame +{ + public abstract class Planner where TContext : IGoalContext + { + public TContext Context; + + public Planner(TContext context) + { + Context = context; + } + + public abstract Plan MakePlan(); + } +}