using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.NPC.HTN;
///
/// Represents a network of multiple tasks. This gets expanded out to its relevant nodes.
///
///
/// This just points to a specific htnCompound prototype
///
public sealed partial class HTNCompoundTask : HTNTask, IHTNCompound
{
[DataField("task", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))]
public string Task = string.Empty;
}