14 lines
350 B
C#
14 lines
350 B
C#
|
|
|
|||
|
|
using Robust.Shared.GameObjects;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.GameObjects.Components
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// A component which applies a specific behaviour to a PointLightComponent on its owner.
|
|||
|
|
/// </summary>
|
|||
|
|
public class SharedLightBehaviourComponent : Component
|
|||
|
|
{
|
|||
|
|
public override string Name => "LightBehaviour";
|
|||
|
|
}
|
|||
|
|
}
|