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

12 lines
307 B
C#
Raw Normal View History

2023-01-03 17:45:18 +11:00
using Robust.Shared.Physics.Components;
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) { }
public bool Cancelled { get; set; }
}
}