Esempio n. 1
0
        public virtual bool Init(string confDirectory, ref string errorMessage)
        {
            OpManager = new OpCodeManager();

            return false;
        }
Esempio n. 2
0
        public override bool Init(string confDirectory, ref string errorMessage)
        {
            OpManager = new OpCodeManager();

            if (!OpManager.Init(confDirectory + "\\" + PatchConfFileName, ref errorMessage))
                return false;

            RegisterExplorers();

            return true;
        }