2022-10-17 15:54:31 +11:00
|
|
|
using Robust.Shared.Map;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Movement.Components;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class LagCompensationComponent : Component
|
2022-10-17 15:54:31 +11:00
|
|
|
{
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public readonly Queue<ValueTuple<TimeSpan, EntityCoordinates, Angle>> Positions = new();
|
|
|
|
|
}
|