Files
tbd-station-14/Content.Shared/Interaction/Events/AttackAttemptEvent.cs
2022-01-04 10:22:28 +01:00

17 lines
390 B
C#

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