using JetBrains.Annotations;
namespace Content.Shared.Interaction.Events;
///
/// Raised when using the entity in your hands.
///
[PublicAPI]
public sealed class UseInHandEvent : HandledEntityEventArgs
{
///
/// Entity holding the item in their hand.
///
public EntityUid User { get; }
public UseInHandEvent(EntityUid user)
{
User = user;
}
}