Files
tbd-station-14/Content.Shared/Physics/Pull/PullAttemptMessage.cs
2021-07-16 17:37:09 -07:00

12 lines
279 B
C#

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