Files
tbd-station-14/Content.Server/Spreader/SpreaderGridComponent.cs

11 lines
326 B
C#

using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
namespace Content.Server.Spreader;
[RegisterComponent]
public sealed partial class SpreaderGridComponent : Component
{
[DataField("nextUpdate", customTypeSerializer:typeof(TimeOffsetSerializer))]
public TimeSpan NextUpdate = TimeSpan.Zero;
}