ITargetedInteractEventArgs.cs 330 B

123456789101112131415
  1. namespace Content.Shared.Interaction
  2. {
  3. public interface ITargetedInteractEventArgs
  4. {
  5. /// <summary>
  6. /// Performer of the attack
  7. /// </summary>
  8. EntityUid User { get; }
  9. /// <summary>
  10. /// Target of the attack
  11. /// </summary>
  12. EntityUid Target { get; }
  13. }
  14. }