Files
tbd-station-14/Content.Server/GameObjects/Components/LightBehaviourComponent.cs
Víctor Aguilera Puerto 6724a9e6ab Fix jenkins build
2020-09-06 17:16:08 +02:00

15 lines
375 B
C#

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