Files
tbd-station-14/Content.Shared/Pulling/Events/PullAttemptEvent.cs
2023-01-03 17:45:18 +11:00

12 lines
307 B
C#

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