static int OnInit(IntPtr L) { try { ToLua.CheckArgsCount(L, 1); LuaTestMediator2 obj = (LuaTestMediator2)ToLua.CheckObject(L, 1, typeof(LuaTestMediator2)); obj.OnInit(); return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }
static int UseItem(IntPtr L) { try { ToLua.CheckArgsCount(L, 2); LuaTestMediator2 obj = (LuaTestMediator2)ToLua.CheckObject(L, 1, typeof(LuaTestMediator2)); int arg0 = (int)LuaDLL.luaL_checknumber(L, 2); obj.UseItem(arg0); return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }
static int GetBagItemData(IntPtr L) { try { ToLua.CheckArgsCount(L, 1); LuaTestMediator2 obj = (LuaTestMediator2)ToLua.CheckObject(L, 1, typeof(LuaTestMediator2)); LuaInterface.LuaTable o = obj.GetBagItemData(); ToLua.Push(L, o); return(1); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }
static int UpdateItems(IntPtr L) { try { ToLua.CheckArgsCount(L, 2); LuaTestMediator2 obj = (LuaTestMediator2)ToLua.CheckObject(L, 1, typeof(LuaTestMediator2)); object arg0 = ToLua.ToVarObject(L, 2); obj.UpdateItems(arg0); return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }
static int _CreateLuaTestMediator2(IntPtr L) { try { int count = LuaDLL.lua_gettop(L); if (count == 0) { LuaTestMediator2 obj = new LuaTestMediator2(); ToLua.PushObject(L, obj); return(1); } else { return(LuaDLL.luaL_throw(L, "invalid arguments to ctor method: LuaTestMediator2.New")); } } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }