ActionPerformedEvent.cs 327 B

12345678
  1. namespace Content.Shared.Actions.Events;
  2. /// <summary>
  3. /// Raised on the action entity when it is used and <see cref="BaseActionEvent.Handled"/>.
  4. /// </summary>
  5. /// <param name="Performer">The entity that performed this action.</param>
  6. [ByRefEvent]
  7. public readonly record struct ActionPerformedEvent(EntityUid Performer);