2023-01-03 17:45:18 +11:00
|
|
|
|
using Robust.Shared.Physics.Components;
|
2022-05-16 22:24:52 +10:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Physics.Pull
|
|
|
|
|
|
{
|
|
|
|
|
|
public sealed class PullAttemptEvent : PullMessage
|
|
|
|
|
|
{
|
2023-01-03 17:45:18 +11:00
|
|
|
|
public PullAttemptEvent(PhysicsComponent puller, PhysicsComponent pulled) : base(puller, pulled) { }
|
2022-05-16 22:24:52 +10:00
|
|
|
|
|
|
|
|
|
|
public bool Cancelled { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|