PowerPulseEvent.cs 317 B

1234567891011
  1. namespace Content.Server.Power.Events;
  2. /// <summary>
  3. /// Invoked on a target entity, when it was pulsed with an energy.
  4. /// For instance, interacted with an active stun baton.
  5. /// </summary>
  6. public sealed class PowerPulseEvent : EntityEventArgs
  7. {
  8. public EntityUid? User;
  9. public EntityUid? Used;
  10. }