* Readonly, typos and redundant string interpolations * Namespaces * Optimize imports * Address reviews * but actually * Localize missing strings * Remove redundant vars
14 lines
306 B
C#
14 lines
306 B
C#
using Robust.Shared.Maths;
|
|
using Robust.Shared.Physics;
|
|
|
|
namespace Content.Shared.Physics
|
|
{
|
|
public class GasVaporController : VirtualController
|
|
{
|
|
public void Move(Vector2 velocityDirection, float speed)
|
|
{
|
|
LinearVelocity = velocityDirection * speed;
|
|
}
|
|
}
|
|
}
|