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