namespace Content.Shared.Interaction.Events;
///
/// Event raised on an item when attempting to use it in your hands. Cancelling it stops the interaction.
///
/// The user of said item
public sealed class GettingUsedAttemptEvent(EntityUid user) : CancellableEntityEventArgs
{
public EntityUid User = user;
}