示例#1
0
        public UnlockH1(string output_dir, string c_path, string d_path)
        {
#if false
            if (!string.IsNullOrEmpty(c_path))
            {
                try { ClientInterface = new Client(output_dir, c_path); }
                catch (BlamLib.Debug.ExceptionLog) { EncounteredInvalidExe = true; }
            }
#endif

            if (!string.IsNullOrEmpty(d_path))
            {
                try { DediInterface = new Dedi(output_dir, d_path); }
                catch (BlamLib.Debug.ExceptionLog) { EncounteredInvalidExe = true; }
            }
        }
示例#2
0
		public UnlockH1(string output_dir, string c_path, string d_path)
		{
#if false
			if (!string.IsNullOrEmpty(c_path))
				try { ClientInterface = new Client(output_dir, c_path); }
				catch (BlamLib.Debug.ExceptionLog) { EncounteredInvalidExe = true; }
#endif

			if (!string.IsNullOrEmpty(d_path))
				try { DediInterface = new Dedi(output_dir, d_path); }
				catch (BlamLib.Debug.ExceptionLog) { EncounteredInvalidExe = true; }
		}