Files
OldThink/Content.Server/Light/Components/LightBehaviourComponent.cs

14 lines
345 B
C#
Raw Normal View History

using Content.Shared.Light.Components;
2021-06-09 22:19:39 +02:00
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
{
}
}