namespace Content.Shared.Interaction { public interface ITargetedInteractEventArgs { /// /// Performer of the attack /// EntityUid User { get; } /// /// Target of the attack /// EntityUid Target { get; } } }