2024-03-19 14:30:56 +11:00
|
|
|
namespace Content.Shared.Pulling.Events;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Raised when a request is made to stop pulling an entity.
|
|
|
|
|
/// </summary>
|
2025-09-15 13:31:22 +02:00
|
|
|
|
|
|
|
|
[ByRefEvent]
|
2024-03-19 14:30:56 +11:00
|
|
|
public record struct AttemptStopPullingEvent(EntityUid? User = null)
|
|
|
|
|
{
|
|
|
|
|
public readonly EntityUid? User = User;
|
|
|
|
|
public bool Cancelled;
|
2025-09-15 13:31:22 +02:00
|
|
|
}
|