Ok, thanks. How do I know how to properly add each:
Code
public static IEnumerable<Type> GetDefaultSkills()
{
return new Type[]
{
typeof(CarpenterSkill),
typeof(LoggingSkill),
typeof(HewingSkill),
typeof(MasonSkill),
typeof(MiningSkill),
typeof(MortaringSkill),
typeof(ChefSkill),
typeof(FarmerSkill),
typeof(GatheringSkill),
typeof(AdvancedCampfireCookingSkill),
typeof(HunterSkill),
typeof(HuntingSkill),
typeof(SmithSkill),
typeof(EngineerSkill),
typeof(SurvivalistSkill),
typeof(TailorSkill)
};
}
Display More
How do I know how the rest of the skills are written syntax wise?