Delta-v/Content.Shared/Physics/Pull/PullAttemptMessage.cs

13 lines
296 B
C#

#nullable enable
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; }
}
}