mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
* let FlashArea be called from shared * untroll --------- Co-authored-by: deltanedas <@deltanedas:kde.org> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com> (cherry picked from commit 84062da1289b760ee8714239322ae07b74e6187c)
16 lines
577 B
C#
16 lines
577 B
C#
using Content.Shared.Flash.Components;
|
|
using Content.Shared.StatusEffect;
|
|
using Robust.Shared.Audio;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Flash;
|
|
|
|
public abstract class SharedFlashSystem : EntitySystem
|
|
{
|
|
public ProtoId<StatusEffectPrototype> FlashedKey = "Flashed";
|
|
|
|
public virtual void FlashArea(Entity<FlashComponent?> source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, float probability = 1f, SoundSpecifier? sound = null, float stunTime = 0f, float knockdownTime = 0f) // WD EDIT
|
|
{
|
|
}
|
|
}
|