mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
12 lines
270 B
C#
12 lines
270 B
C#
namespace Content.Client.Botany.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class PotencyVisualsComponent : Component
|
|
{
|
|
[DataField("minimumScale")]
|
|
public float MinimumScale = 1f;
|
|
|
|
[DataField("maximumScale")]
|
|
public float MaximumScale = 2f;
|
|
}
|