Beispiel #1
0
        private static int Test(LuaManager Instance,IntPtr l)
        {
            // get method arguments
                  LuaStackFunction lsf = new LuaStackFunction(3);
                  LuaRefFunction lrf = new LuaRefFunction(4,l);

                  // call method
                  Instance.Test(lsf,lrf);

                  return 0;
        }