mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-28 02:57:52 +03:00
14 lines
299 B
C#
14 lines
299 B
C#
#nullable enable
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.Physics.Pull
|
|
{
|
|
public class PullStartedMessage : PullMessage
|
|
{
|
|
public PullStartedMessage(IPhysicsComponent puller, IPhysicsComponent pulled) :
|
|
base(puller, pulled)
|
|
{
|
|
}
|
|
}
|
|
}
|