Fusion.Engine.Server.SnapshotQueue.SnapshotQueue C# (CSharp) Method

SnapshotQueue() public method

public SnapshotQueue ( int capacity ) : System
capacity int
return System
		public SnapshotQueue ( int capacity )
		{
			this.capacity	=	capacity;
			queue			=	new List<Snapshot>( capacity + 4 );	 //	why +4 ???
		}