예제 #1
0
 /// <summary>
 /// Use this method before doing anything. This is more or less a constructor,
 /// but you can't have constructors in a static class.
 /// </summary>
 /// <param name="language"></param>
 /// <param name="folderLocation"></param>
 public static void SetupLanguage(XLanguage language, string folderLocation)
 {
     currentLanguage = (int)language;
     xml             = new XMLManager(folderLocation + XMLFileName);
 }