Files
tbd-station-14/Content.Shared/Movement/Pulling/Events/AttemptStopPullingEvent.cs
Errant 9b5f9c3fd6 [Hotfix] Remove pull-escape trick (#40368)
* make HandleStopPull byref

* we get signal
2025-09-15 13:31:22 +02:00

13 lines
290 B
C#

namespace Content.Shared.Pulling.Events;
/// <summary>
/// Raised when a request is made to stop pulling an entity.
/// </summary>
[ByRefEvent]
public record struct AttemptStopPullingEvent(EntityUid? User = null)
{
public readonly EntityUid? User = User;
public bool Cancelled;
}