mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
11 lines
318 B
C#
11 lines
318 B
C#
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;
|
|
}
|