Files
crystall-punk-14/Content.Server/Spreader/SpreaderGridComponent.cs

11 lines
318 B
C#
Raw Normal View History

2023-04-10 15:37:03 +10:00
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
namespace Content.Server.Spreader;
[RegisterComponent]
public sealed class SpreaderGridComponent : Component
{
[DataField("nextUpdate", customTypeSerializer:typeof(TimeOffsetSerializer))]
public TimeSpan NextUpdate = TimeSpan.Zero;
}