using JetBrains.Annotations;
namespace Content.Shared.Interaction.Events;
///
/// Raised when an entity is dropped from a users hands, or directly removed from a users inventory, but not when moved between hands & inventory.
///
[PublicAPI]
public sealed class DroppedEvent : HandledEntityEventArgs
{
///
/// Entity that dropped the item.
///
public EntityUid User { get; }
public DroppedEvent(EntityUid user)
{
User = user;
}
}