namespace FluidHTN.Compounds { /// /// The Decompose All interface is a tag to signify that this compound task type intends to /// decompose all its subtasks. /// For a task to support Pause Plan tasks, needed for partial planning, it must be /// a decompose-all compound task type. /// public interface IDecomposeAll : ICompoundTask { } }