You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
415 B
C#

namespace FluidHTN.Compounds
{
/// <summary>
/// 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.
/// </summary>
public interface IDecomposeAll : ICompoundTask
{
}
}