Files
tbd-station-14/Content.Shared/Physics/Pull/PullAttemptMessage.cs
DrSmugleaf f785ec4efb Add pulling taking up a hand (#2405)
* Add pulling taking up a hand

* Revert unnecessary refactor
2020-10-28 10:16:40 +01:00

12 lines
310 B
C#

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