Files
tbd-station-14/Content.Shared/Throwing/CatchAttemptEvent.cs
slarticodefast 22e3d533d3 Catchable items, playable basketball (#37702)
* catching

* fix

* improve

* fix linter

* cleanup

* fix prediction

* do the same here

* fix comment
2025-07-06 09:54:20 -07:00

8 lines
231 B
C#

namespace Content.Shared.Throwing;
/// <summary>
/// Raised on someone when they try to catch an item.
/// </summary>
[ByRefEvent]
public record struct CatchAttemptEvent(EntityUid Item, float CatchChance, bool Cancelled = false);