Files
tbd-station-14/Content.Shared/Interaction/ITargetedInteractEventArgs.cs
2022-05-13 17:59:03 +10:00

16 lines
330 B
C#

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