mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
15 lines
332 B
C#
15 lines
332 B
C#
namespace Content.Server.Shadowkin;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class EtherealLightComponent : Component
|
|
{
|
|
public EntityUid AttachedEntity = EntityUid.Invalid;
|
|
|
|
public float OldRadius = 0f;
|
|
|
|
public bool OldRadiusEdited = false;
|
|
|
|
public float OldEnergy = 0f;
|
|
|
|
public bool OldEnergyEdited = false;
|
|
} |