Files
OldThink/Content.Client/GameObjects/Components/Movement/PlayerInputMoverComponent.cs

16 lines
485 B
C#
Raw Normal View History

#nullable enable
2020-06-24 02:21:20 +02:00
using Content.Shared.GameObjects.Components.Movement;
using Robust.Shared.GameObjects;
using Robust.Shared.Map;
namespace Content.Client.GameObjects.Components.Movement
{
[RegisterComponent]
[ComponentReference(typeof(IMoverComponent))]
public class PlayerInputMoverComponent : SharedPlayerInputMoverComponent
2020-06-24 02:21:20 +02:00
{
public override EntityCoordinates LastPosition { get; set; }
2020-06-24 02:21:20 +02:00
public override float StepSoundDistance { get; set; }
}
}