Files
wwdpublic/Content.Shared/_Shitmed/StatusEffects/SpawnFlashComponent.cs
2025-04-20 11:15:45 +07:00

14 lines
461 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared._Shitmed.StatusEffects;
/// <summary>
/// For use as a status effect. Creates the same effect as a flash grenade.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class SpawnFlashComponent : SpawnEntityEffectComponent
{
public override string EntityPrototype { get; set; } = "AdminInstantEffectFlash";
public override bool AttachToParent { get; set; } = true;
}