mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-27 02:27:46 +03:00
* 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 PullStoppedMessage : PullMessage
|
|
{
|
|
public PullStoppedMessage(PullController controller, IPhysicsComponent puller, IPhysicsComponent pulled) :
|
|
base(controller, puller, pulled)
|
|
{
|
|
}
|
|
}
|
|
}
|