AttemptStopPullingEvent.cs 275 B

12345678910
  1. namespace Content.Shared.Pulling.Events;
  2. /// <summary>
  3. /// Raised when a request is made to stop pulling an entity.
  4. /// </summary>
  5. public record struct AttemptStopPullingEvent(EntityUid? User = null)
  6. {
  7. public readonly EntityUid? User = User;
  8. public bool Cancelled;
  9. }