Files
tbd-station-14/Content.Shared/Light/Component/SharedLightBehaviourComponent.cs
2021-07-16 17:37:09 -07:00

11 lines
333 B
C#

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