1
0

GrowingKudzuComponent.cs 501 B

1234567891011121314
  1. using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
  2. namespace Content.Server.Spreader;
  3. [RegisterComponent, Access(typeof(KudzuSystem)), AutoGenerateComponentPause]
  4. public sealed partial class GrowingKudzuComponent : Component
  5. {
  6. /// <summary>
  7. /// The next time kudzu will try to tick its growth level.
  8. /// </summary>
  9. [DataField("nextTick", customTypeSerializer:typeof(TimeOffsetSerializer))]
  10. [AutoPausedField]
  11. public TimeSpan NextTick = TimeSpan.Zero;
  12. }