* Readonly, typos and redundant string interpolations * Namespaces * Optimize imports * Address reviews * but actually * Localize missing strings * Remove redundant vars
15 lines
375 B
C#
15 lines
375 B
C#
using Content.Shared.GameObjects.Components;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
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
|
|
{
|
|
|
|
}
|
|
}
|