Files
crystall-punk-14/Content.Shared/Pulling/Events/PullAttemptEvent.cs

12 lines
282 B
C#
Raw Normal View History

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