parent
2b8d7519cc
commit
bfc7d753a4
@ -0,0 +1,14 @@
|
||||
namespace CMSGame
|
||||
{
|
||||
public abstract class Planner<TContext> where TContext : IGoalContext
|
||||
{
|
||||
public TContext Context;
|
||||
|
||||
public Planner(TContext context)
|
||||
{
|
||||
Context = context;
|
||||
}
|
||||
|
||||
public abstract Plan MakePlan();
|
||||
}
|
||||
}
|
Loading…
Reference in new issue