Ejemplo n.º 1
0
        public bool GetMetaTable(int idx)
        {
            var val = _stack[idx];
            var mt  = LuaValue.GetMetaTable(val, this);

            if (mt != null)
            {
                _stack.Push(mt);
                return(true);
            }

            return(false);
        }