Files
tbd-station-14/Content.Shared/Interaction/Events/AttackAttemptEvent.cs
2022-02-16 18:23:23 +11:00

17 lines
397 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.Interaction.Events
{
public sealed class AttackAttemptEvent : CancellableEntityEventArgs
{
public EntityUid Uid { get; }
public EntityUid? Target { get; }
public AttackAttemptEvent(EntityUid uid, EntityUid? target = null)
{
Uid = uid;
Target = target;
}
}
}