#nullable enable using Robust.Shared.GameObjects; namespace Content.Shared.GameObjects.Components { /// /// A component which applies a specific behaviour to a PointLightComponent on its owner. /// public class SharedLightBehaviourComponent : Component { public override string Name => "LightBehaviour"; } }