Delta-v/Content.Shared/Interaction/Events/AttackAttemptEvent.cs

15 lines
301 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.Interaction.Events
{
public class AttackAttemptEvent : CancellableEntityEventArgs
{
public AttackAttemptEvent(IEntity entity)
{
Entity = entity;
}
public IEntity Entity { get; }
}
}