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