mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 15:08:46 +03:00
9 lines
171 B
C#
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!;
|
|
}
|