// Token: 0x06000F16 RID: 3862 RVA: 0x00135377 File Offset: 0x00133577
        public static List <string> getProfessionDescription(int whichProfession)
        {
            List <string> expr_05 = new List <string>();

            LevelUpMenu.addProfessionDescriptions(expr_05, LevelUpMenu.getProfessionName(whichProfession));
            return(expr_05);
        }
Example #2
0
        public static List <string> getProfessionDescription(int whichProfession)
        {
            List <string> descriptions   = new List <string>();
            string        professionName = LevelUpMenu.getProfessionName(whichProfession);

            LevelUpMenu.addProfessionDescriptions(descriptions, professionName);
            return(descriptions);
        }