LuaInterface.LuaObjectPool.LuaObjectPool C# (CSharp) Method

LuaObjectPool() public method

public LuaObjectPool ( ) : System
return System
        public LuaObjectPool()
        {
            list = new List<PoolNode>(1024);
            head = new PoolNode(0, null);
            list.Add(head);
            list.Add(new PoolNode(1, null));
            count = list.Count;
        }