Files
tbd-station-14/Content.Server/Movement/Components/LagCompensationComponent.cs
metalgearsloth 123a9dbf02 Lag compensation for melee (#11885)
Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
2022-10-17 15:54:31 +11:00

11 lines
267 B
C#

using Robust.Shared.Map;
namespace Content.Server.Movement.Components;
[RegisterComponent]
public sealed class LagCompensationComponent : Component
{
[ViewVariables]
public readonly Queue<ValueTuple<TimeSpan, EntityCoordinates, Angle>> Positions = new();
}