* Readonly, typos and redundant string interpolations * Namespaces * Optimize imports * Address reviews * but actually * Localize missing strings * Remove redundant vars
16 lines
424 B
C#
16 lines
424 B
C#
|
|
using Content.Shared.GameObjects.Components;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.GameObjects.Components.Interactable
|
|
{
|
|
/// <summary>
|
|
/// Component that represents a handheld expendable light which can be activated and eventually dies over time.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public class ExpendableLightComponent : SharedExpendableLightComponent
|
|
{
|
|
|
|
}
|
|
}
|