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