static int __CreateInstance(RealStatePtr L) { try { ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); if (LuaAPI.lua_gettop(L) == 1) { QP.Framework.ModuleMgr gen_ret = new QP.Framework.ModuleMgr(); translator.Push(L, gen_ret); return(1); } } catch (System.Exception gen_e) { return(LuaAPI.luaL_error(L, "c# exception:" + gen_e)); } return(LuaAPI.luaL_error(L, "invalid arguments to QP.Framework.ModuleMgr constructor!")); }
static int _m_GetModule(RealStatePtr L) { try { ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); QP.Framework.ModuleMgr gen_to_be_invoked = (QP.Framework.ModuleMgr)translator.FastGetCSObj(L, 1); { string _moduleName = LuaAPI.lua_tostring(L, 2); QP.Framework.Module gen_ret = gen_to_be_invoked.GetModule(_moduleName); translator.Push(L, gen_ret); return(1); } } catch (System.Exception gen_e) { return(LuaAPI.luaL_error(L, "c# exception:" + gen_e)); } }