Files
tbd-station-14/Content.Server/Power/Events/PowerPulseEvent.cs
Alex Evgrashin 6eeaa81131 More artifacts triggers and tweaks (#6723)
Co-authored-by: mirrorcult <lunarautomaton6@gmail.com>
2022-02-19 12:16:49 -07:00

12 lines
317 B
C#

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;
}