namespace Content.Shared.Pulling.Events { /// /// Directed event raised on the puller to see if it can start pulling something. /// public sealed class StartPullAttemptEvent : CancellableEntityEventArgs { public StartPullAttemptEvent(EntityUid puller, EntityUid pulled) { Puller = puller; Pulled = pulled; } public EntityUid Puller { get; } public EntityUid Pulled { get; } } }