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