namespace Content.Shared.Throwing { public sealed class ThrowAttemptEvent : CancellableEntityEventArgs { public ThrowAttemptEvent(EntityUid uid, EntityUid itemUid) { Uid = uid; ItemUid = itemUid; } public EntityUid Uid { get; } public EntityUid ItemUid { get; } } /// /// Raised when we try to pushback an entity from throwing /// public sealed class ThrowPushbackAttemptEvent : CancellableEntityEventArgs {} }