Files
OldThink/Content.Server/Spreader/GrowingKudzuComponent.cs

15 lines
501 B
C#
Raw Permalink Normal View History

2023-04-10 15:37:03 +10:00
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
namespace Content.Server.Spreader;
[RegisterComponent, Access(typeof(KudzuSystem)), AutoGenerateComponentPause]
public sealed partial class GrowingKudzuComponent : Component
2023-04-10 15:37:03 +10:00
{
/// <summary>
/// The next time kudzu will try to tick its growth level.
/// </summary>
[DataField("nextTick", customTypeSerializer:typeof(TimeOffsetSerializer))]
[AutoPausedField]
2023-04-10 15:37:03 +10:00
public TimeSpan NextTick = TimeSpan.Zero;
}