mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-27 18:47:52 +03:00
13 lines
316 B
C#
13 lines
316 B
C#
#nullable enable
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.Physics.Pull
|
|
{
|
|
public class PullAttemptMessage : PullMessage
|
|
{
|
|
public PullAttemptMessage(IPhysicsComponent puller, IPhysicsComponent pulled) : base(puller, pulled) { }
|
|
|
|
public bool Cancelled { get; set; }
|
|
}
|
|
}
|