mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
comments
This commit is contained in:
parent
5d7cce252b
commit
6c6a161e15
@ -10,11 +10,14 @@ namespace Mirror
|
||||
{
|
||||
public class HistoryBounds
|
||||
{
|
||||
public readonly Queue<Bounds> history; // TODO not public
|
||||
// history of bounds
|
||||
readonly Queue<Bounds> 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)
|
||||
|
Loading…
Reference in New Issue
Block a user