Files
crystall-punk-14/Content.Shared/Movement/Pulling/Events/StartPullAttemptEvent.cs

18 lines
492 B
C#
Raw Permalink Normal View History

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
{
2021-12-04 12:47:09 +01:00
public StartPullAttemptEvent(EntityUid puller, EntityUid pulled)
{
Puller = puller;
Pulled = pulled;
}
2021-12-04 12:47:09 +01:00
public EntityUid Puller { get; }
public EntityUid Pulled { get; }
}
}