Files
wwdpublic/Content.Server/Shadowkin/EtherealLightComponent.cs
2024-11-21 17:49:04 +07:00

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;
}