using FluidHTN.Factory;
namespace FluidHTN
{
///
/// A simple domain builder for easy use when one just need the core functionality
/// of the BaseDomainBuilder. This class is sealed, so if you want to extend the
/// functionality of the domain builder, extend BaseDomainBuilder instead.
///
///
public sealed class DomainBuilder : BaseDomainBuilder, T>
where T : IContext
{
// ========================================================= CONSTRUCTION
public DomainBuilder(string domainName) : base(domainName, new DefaultFactory())
{
}
public DomainBuilder(string domainName, IFactory factory) : base(domainName, factory)
{
}
}
}