BeingPulledAttemptEvent.cs 482 B

1234567891011121314151617
  1. namespace Content.Shared.Pulling.Events
  2. {
  3. /// <summary>
  4. /// Directed event raised on the pulled to see if it can be pulled.
  5. /// </summary>
  6. public sealed class BeingPulledAttemptEvent : CancellableEntityEventArgs
  7. {
  8. public BeingPulledAttemptEvent(EntityUid puller, EntityUid pulled)
  9. {
  10. Puller = puller;
  11. Pulled = pulled;
  12. }
  13. public EntityUid Puller { get; }
  14. public EntityUid Pulled { get; }
  15. }
  16. }