2020-08-16 18:51:21 +02:00
|
|
|
|
using Robust.Shared.GameObjects.Components;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Physics.Pull
|
|
|
|
|
|
{
|
|
|
|
|
|
public class PullStartedMessage : PullMessage
|
|
|
|
|
|
{
|
2020-10-11 16:36:58 +02:00
|
|
|
|
public PullStartedMessage(PullController controller, IPhysicsComponent puller, IPhysicsComponent pulled) :
|
2020-08-16 18:51:21 +02:00
|
|
|
|
base(controller, puller, pulled)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|