You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-06 02:11:06 +09:00
Lots of xml comments added. Documentation updated.
Removed extension methods to be able to compile for .net framework 2.0
This commit is contained in:
@@ -52,11 +52,13 @@ namespace Lidgren.Network
|
||||
/// </summary>
|
||||
public int Count { get { return m_size; } }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the current capacity for the queue
|
||||
/// </summary>
|
||||
public int Capacity { get { return m_items.Length; } }
|
||||
|
||||
public NetQueue(int initialCapacity)
|
||||
{
|
||||
System.Collections.Generic.Queue<int> a;
|
||||
m_lock = new object();
|
||||
m_items = new T[initialCapacity];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user