using Robust.Shared.Prototypes;
namespace Content.Server.NPC.HTN;
///
/// Represents a network of multiple tasks. This gets expanded out to its relevant nodes.
///
[Prototype("htnCompound")]
public sealed class HTNCompoundTask : HTNTask
{
///
/// The available branches for this compound task.
///
[DataField("branches", required: true)]
public List Branches = default!;
}