Files
tbd-station-14/Content.Shared/Effects/ColorFlashEffectComponent.cs

12 lines
301 B
C#

namespace Content.Shared.Effects;
/// <summary>
/// Stores the original sprite color for flashing entity to be able to restore it later.
/// </summary>
[RegisterComponent]
public sealed partial class ColorFlashEffectComponent : Component
{
[ViewVariables]
public Color Color = Color.White;
}