* Rename usages of collidable to physics * high tier PANIQUE * aaaaaaaaAAAAAa * cursed commit dont research * Fix urist and items being anchored * Fix the rest
13 lines
332 B
C#
13 lines
332 B
C#
using Robust.Shared.GameObjects.Components;
|
|
|
|
namespace Content.Shared.Physics.Pull
|
|
{
|
|
public class PullStartedMessage : PullMessage
|
|
{
|
|
public PullStartedMessage(PullController controller, IPhysicsComponent puller, IPhysicsComponent pulled) :
|
|
base(controller, puller, pulled)
|
|
{
|
|
}
|
|
}
|
|
}
|