mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 22:18:52 +03:00
12 lines
261 B
C#
12 lines
261 B
C#
namespace Content.Server.Kudzu;
|
|
|
|
[RegisterComponent]
|
|
public sealed class GrowingKudzuComponent : Component
|
|
{
|
|
[DataField("growthLevel")]
|
|
public int GrowthLevel = 1;
|
|
|
|
[DataField("growthTickSkipChance")]
|
|
public float GrowthTickSkipChange = 0.0f;
|
|
}
|