Files
tbd-station-14/Content.Server/NPC/HTN/HTNTask.cs
metalgearsloth 0286b88388 NPC refactor (#10122)
Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
2022-09-06 00:28:23 +10:00

9 lines
171 B
C#

using Robust.Shared.Prototypes;
namespace Content.Server.NPC.HTN;
public abstract class HTNTask : IPrototype
{
[IdDataField] public string ID { get; } = default!;
}