static int set_clickNotification(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            UICamera.MouseOrTouch      obj  = (UICamera.MouseOrTouch)o;
            UICamera.ClickNotification arg0 = (UICamera.ClickNotification)ToLua.CheckObject(L, 2, typeof(UICamera.ClickNotification));
            obj.clickNotification = arg0;
            return(0);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index clickNotification on a nil value" : e.Message));
        }
    }
    static int get_clickNotification(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            UICamera.MouseOrTouch      obj = (UICamera.MouseOrTouch)o;
            UICamera.ClickNotification ret = obj.clickNotification;
            ToLua.Push(L, ret);
            return(1);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index clickNotification on a nil value" : e.Message));
        }
    }