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.

13 lines
265 B
C#

using System.Collections.Generic;
using FluidHTN.Compounds;
namespace FluidHTN
{
public interface IDomain
{
TaskRoot Root { get; }
void Add(ICompoundTask parent, ITask subtask);
void Add(ICompoundTask parent, Slot slot);
}
}