* Fix namespaces and optimize imports * Cleanup fixes * Merge conflict fixes * Merge conflict fixes * Merge conflict fixes
14 lines
303 B
C#
14 lines
303 B
C#
using Robust.Shared.Maths;
|
|
using Robust.Shared.Physics;
|
|
|
|
namespace Content.Shared.Physics
|
|
{
|
|
public class VaporController : VirtualController
|
|
{
|
|
public void Move(Vector2 velocityDirection, float speed)
|
|
{
|
|
LinearVelocity = velocityDirection * speed;
|
|
}
|
|
}
|
|
}
|