Files

9 lines
348 B
C#
Raw Permalink Normal View History

2023-05-02 04:57:11 +10:00
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.NPC.Queries.Curves;
public sealed partial class PresetCurve : IUtilityCurve
2023-05-02 04:57:11 +10:00
{
[DataField("preset", required: true, customTypeSerializer:typeof(PrototypeIdSerializer<UtilityCurvePresetPrototype>))] public string Preset = default!;
2023-05-02 04:57:11 +10:00
}