static int OnEnd(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 2);
         UI.HandleGrey obj  = (UI.HandleGrey)ToLua.CheckObject(L, 1, typeof(UI.HandleGrey));
         UI.Handle     arg0 = (UI.Handle)ToLua.CheckObject(L, 2, typeof(UI.Handle));
         obj.OnEnd(arg0);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
 static int OnReset(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 4);
         UI.HandleGrey obj  = (UI.HandleGrey)ToLua.CheckObject(L, 1, typeof(UI.HandleGrey));
         UI.Handle     arg0 = (UI.Handle)ToLua.CheckObject(L, 2, typeof(UI.Handle));
         bool          arg1 = LuaDLL.luaL_checkboolean(L, 3);
         bool          arg2 = LuaDLL.luaL_checkboolean(L, 4);
         obj.OnReset(arg0, arg1, arg2);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
    static int _CreateUI_HandleGrey(IntPtr L)
    {
        try
        {
            int count = LuaDLL.lua_gettop(L);

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