9 lines
169 B
C#
9 lines
169 B
C#
|
|
namespace Content.Server.NPC.HTN;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Represents a HTN task that can be decomposed into primitive tasks.
|
||
|
|
/// </summary>
|
||
|
|
public interface IHTNCompound
|
||
|
|
{
|
||
|
|
}
|