Files
tbd-station-14/Content.Shared/Interaction/Events/AttackAttemptEvent.cs
2021-11-09 13:40:27 +01:00

15 lines
293 B
C#

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