Re-organize all projects (#4166)
This commit is contained in:
18
Content.Shared/Interaction/ITargetedInteractEventArgs.cs
Normal file
18
Content.Shared/Interaction/ITargetedInteractEventArgs.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
#nullable enable
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user