Files
tbd-station-14/Content.Shared/Interaction/ITargetedInteractEventArgs.cs
2021-06-09 22:19:39 +02:00

19 lines
377 B
C#

#nullable enable
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; }
}
}