namespace Content.Server.NPC.HTN; /// /// Helper interface to run the appropriate shutdown for a particular task. /// public interface IHtnConditionalShutdown { /// /// When to shut the task down. /// HTNPlanState ShutdownState { get; } /// /// Run whenever the specifies. /// void ConditionalShutdown(NPCBlackboard blackboard); }