#nullable enable
using Robust.Shared.GameObjects;
namespace Content.Shared.Interaction
{
public interface ITargetedInteractEventArgs
{
///
/// Performer of the attack
///
IEntity User { get; }
///
/// Target of the attack
///
IEntity Target { get; }
}
}