Files
tbd-station-14/Content.Client/Light/Components/ExpendableLightComponent.cs
2022-12-13 14:46:58 -06:00

15 lines
451 B
C#

using Content.Shared.Light.Component;
using Robust.Shared.Audio;
namespace Content.Client.Light.Components
{
/// <summary>
/// Component that represents a handheld expendable light which can be activated and eventually dies over time.
/// </summary>
[RegisterComponent]
public sealed class ExpendableLightComponent : SharedExpendableLightComponent
{
public IPlayingAudioStream? PlayingStream { get; set; }
}
}