More artifacts triggers and tweaks (#6723)

Co-authored-by: mirrorcult <lunarautomaton6@gmail.com>
This commit is contained in:
Alex Evgrashin
2022-02-19 22:16:49 +03:00
committed by GitHub
parent 162af7add5
commit 6eeaa81131
32 changed files with 347 additions and 61 deletions

View File

@@ -0,0 +1,11 @@
namespace Content.Server.Power.Events;
/// <summary>
/// Invoked on a target entity, when it was pulsed with an energy.
/// For instance, interacted with an active stun baton.
/// </summary>
public sealed class PowerPulseEvent : EntityEventArgs
{
public EntityUid? User;
public EntityUid? Used;
}