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