6
StarHorizon_Public/Content.Server/Light/Components/LightBehaviourComponent.cs
2025-11-11 11:18:56 +03: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
{
}
}