Files
tbd-station-14/Content.Shared/Effects/ColorFlashEffectComponent.cs
Slava0135 d4c8065e8a Move and rename damage effect to color flash effect (#18263)
* move damage effect to different package

* rename to ColorFlashEffect

* renaming some other things
2023-08-01 19:02:54 +03:00

12 lines
293 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 class ColorFlashEffectComponent : Component
{
[ViewVariables]
public Color Color = Color.White;
}