Files
tbd-station-14/Content.Shared/Pulling/Events/PullAttemptMessage.cs
2022-02-16 18:23:23 +11:00

12 lines
286 B
C#

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