Example #1
0
        public ParameterInfo(Type parameterType)
        {
            Modifier      = ParameterModifier.None;
            ParameterType = parameterType;
            var type = parameterType.Name();

            Name = Guerilla.ToMemberName(type);
        }
Example #2
0
        public UnlockH1(string output_dir, string g_path, string t_path, string s_path)
        {
            if (!string.IsNullOrEmpty(g_path))
            {
                try { GuerillaInterface = new Guerilla(output_dir, g_path); }
                catch (BlamLib.Debug.ExceptionLog) { EncounteredInvalidExe = true; }
            }

            if (!string.IsNullOrEmpty(t_path))
            {
                try { ToolInterface = new Tool(output_dir, t_path); }
                catch (BlamLib.Debug.ExceptionLog) { EncounteredInvalidExe = true; }
            }

            if (!string.IsNullOrEmpty(s_path))
            {
                try { SapienInterface = new Sapien(output_dir, s_path); }
                catch (BlamLib.Debug.ExceptionLog) { EncounteredInvalidExe = true; }
            }
        }
Example #3
0
		public UnlockH2(string output_dir, string g_path, string t_path, string s_path)
		{
			if (!string.IsNullOrEmpty(g_path))
				try { GuerillaInterface = new Guerilla(output_dir, g_path); }
				catch (BlamLib.Debug.ExceptionLog) { EncounteredInvalidExe = true; }

			if (!string.IsNullOrEmpty(t_path))
				try { ToolInterface = new Tool(output_dir, t_path); }
				catch (BlamLib.Debug.ExceptionLog) { EncounteredInvalidExe = true; }

			if (!string.IsNullOrEmpty(s_path))
				try { SapienInterface = new Sapien(output_dir, s_path); }
				catch (BlamLib.Debug.ExceptionLog) { EncounteredInvalidExe = true; }
		}