Files
tbd-station-14/Content.Server/Kudzu/GrowingKudzuComponent.cs
2022-02-16 18:23:23 +11:00

16 lines
384 B
C#

using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
using Robust.Shared.ViewVariables;
namespace Content.Server.Kudzu;
[RegisterComponent]
public sealed class GrowingKudzuComponent : Component
{
[DataField("growthLevel")]
public int GrowthLevel = 1;
[DataField("growthTickSkipChance")]
public float GrowthTickSkipChange = 0.0f;
}