6
StarHorizon_Public/Content.Server/Light/Components/LightBehaviourComponent.cs
2026-01-13 18:31:02 +02:00

14 lines
345 B
C#

using Content.Shared.Light.Components;
namespace Content.Server.Light.Components
{
/// <summary>
/// A component which applies a specific behaviour to a PointLightComponent on its owner.
/// </summary>
[RegisterComponent]
public sealed partial class LightBehaviourComponent : SharedLightBehaviourComponent
{
}
}