Files
tbd-station-14/Content.Shared/Pulling/Events/StartPullAttemptEvent.cs
2022-02-16 18:23:23 +11:00

20 lines
526 B
C#

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