Re-organize all projects (#4166)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Maths;
|
||||
|
||||
namespace Content.Server.Movement.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
public class StressTestMovementComponent : Component
|
||||
{
|
||||
public override string Name => "StressTestMovement";
|
||||
|
||||
public float Progress { get; set; }
|
||||
public Vector2 Origin { get; set; }
|
||||
|
||||
protected override void Startup()
|
||||
{
|
||||
base.Startup();
|
||||
|
||||
Origin = Owner.Transform.WorldPosition;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user