static int OnInit(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         LuaTestMediator3 obj = (LuaTestMediator3)ToLua.CheckObject(L, 1, typeof(LuaTestMediator3));
         obj.OnInit();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
 static int UseItem(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 2);
         LuaTestMediator3 obj = (LuaTestMediator3)ToLua.CheckObject(L, 1, typeof(LuaTestMediator3));
         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);
         LuaTestMediator3      obj = (LuaTestMediator3)ToLua.CheckObject(L, 1, typeof(LuaTestMediator3));
         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);
         LuaTestMediator3 obj  = (LuaTestMediator3)ToLua.CheckObject(L, 1, typeof(LuaTestMediator3));
         object           arg0 = ToLua.ToVarObject(L, 2);
         obj.UpdateItems(arg0);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
    static int _CreateLuaTestMediator3(IntPtr L)
    {
        try
        {
            int count = LuaDLL.lua_gettop(L);

            if (count == 0)
            {
                LuaTestMediator3 obj = new LuaTestMediator3();
                ToLua.PushObject(L, obj);
                return(1);
            }
            else
            {
                return(LuaDLL.luaL_throw(L, "invalid arguments to ctor method: LuaTestMediator3.New"));
            }
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e));
        }
    }