示例#1
0
        /// <summary>
        /// Disables the <see cref="ImguiHook"/> temporarily.
        /// </summary>
        public static void Disable()
        {
            WndProcHook?.Disable();
            if (Implementations == null)
            {
                return;
            }

            foreach (var implementation in Implementations)
            {
                implementation?.Disable();
            }
        }
示例#2
0
 public void Disable()
 {
     WndProcHook?.Disable();
     Implementation?.Disable();
 }