// 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);
        }
Exemplo n.º 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);
        }
 // Token: 0x06000F17 RID: 3863 RVA: 0x0013538A File Offset: 0x0013358A
 public static string getProfessionTitleFromNumber(int whichProfession)
 {
     return(Game1.content.LoadString("Strings\\UI:LevelUp_ProfessionName_" + LevelUpMenu.getProfessionName(whichProfession), new object[0]));
 }