Files
tbd-station-14/Content.Shared/Interaction/ITargetedInteractEventArgs.cs
2021-07-16 17:37:09 -07:00

18 lines
360 B
C#

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