Files
tbd-station-14/Content.Shared/Pulling/Events/PullAttemptEvent.cs
2022-05-16 22:24:52 +10:00

12 lines
282 B
C#

using Robust.Shared.Physics;
namespace Content.Shared.Physics.Pull
{
public sealed class PullAttemptEvent : PullMessage
{
public PullAttemptEvent(IPhysBody puller, IPhysBody pulled) : base(puller, pulled) { }
public bool Cancelled { get; set; }
}
}