diff --git a/Assets/Mirror/Core/LagCompensation/HistoryBounds.cs b/Assets/Mirror/Core/LagCompensation/HistoryBounds.cs index be85cd1c2..e7e6aec79 100644 --- a/Assets/Mirror/Core/LagCompensation/HistoryBounds.cs +++ b/Assets/Mirror/Core/LagCompensation/HistoryBounds.cs @@ -10,11 +10,14 @@ namespace Mirror { public class HistoryBounds { - public readonly Queue history; // TODO not public + // history of bounds + readonly Queue history; public int Count => history.Count; + // history limit. oldest bounds will be removed. public readonly int limit; + // total bounds encapsulating all of the bounds history public Bounds total; public HistoryBounds(int limit)