2022-05-13 00:59:03 -07:00
|
|
|
|
namespace Content.Shared.Interaction
|
2020-07-06 14:27:03 -07:00
|
|
|
|
{
|
|
|
|
|
|
public interface ITargetedInteractEventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Performer of the attack
|
|
|
|
|
|
/// </summary>
|
2021-12-04 12:35:33 +01:00
|
|
|
|
EntityUid User { get; }
|
2020-07-06 14:27:03 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Target of the attack
|
|
|
|
|
|
/// </summary>
|
2021-12-04 12:35:33 +01:00
|
|
|
|
EntityUid Target { get; }
|
2020-07-06 14:27:03 -07:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|