Files
tbd-station-14/Content.Shared/Pulling/Events/PullAttemptMessage.cs
2021-07-31 03:14:00 +02: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; }
}
}