Пример #1
0
        public frmMain()
        {
            InitializeComponent();

            GF    = new GeneralFuncs();
            WF    = new WoWFuncs();
            MySet = new Settings();
        }
Пример #2
0
 public MacroTranslator(Boolean GermanToEnglish, string WTFPath, string[] SpellList)
 {
     GF = new GeneralFuncs();
     WF = new WoWFuncs();
     if (WTFPath != null)
     {
         if (GermanToEnglish)
         {
             GerToEng(WTFPath, SpellList);
         }
         else
         {
             EngToGer(WTFPath, SpellList);
         }
     }
 }