2023-08-01 19:02:54 +03:00
|
|
|
namespace Content.Shared.Effects;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Stores the original sprite color for flashing entity to be able to restore it later.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class ColorFlashEffectComponent : Component
|
2023-08-01 19:02:54 +03:00
|
|
|
{
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public Color Color = Color.White;
|
|
|
|
|
}
|