mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
18 lines
360 B
C#
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; }
|
|
|
|
}
|
|
}
|