Files
tbd-station-14/Content.Shared/Interaction/ITargetedInteractEventArgs.cs
Vera Aguilera Puerto 424c83e39c Fix a lot more errors.
2021-12-04 12:35:33 +01:00

18 lines
364 B
C#

using Robust.Shared.GameObjects;
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; }
}
}