2021-02-11 01:13:03 -08:00
|
|
|
|
using Robust.Shared.GameObjects;
|
2020-07-06 14:27:03 -07:00
|
|
|
|
|
2020-07-18 22:51:56 -07:00
|
|
|
|
namespace Content.Shared.Interfaces.GameObjects.Components
|
2020-07-06 14:27:03 -07:00
|
|
|
|
{
|
|
|
|
|
|
public interface ITargetedInteractEventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Performer of the attack
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
IEntity User { get; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Target of the attack
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
IEntity Target { get; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|