摘要:
public class Follower { private List<Skill> skillList; Dictionary<string, Item> itemList = new Dictionary<string, Item>(); public List<Skill> SkillList { get { return this.skillList; } } public Dictionary<string, Item> ItemList { get { return this.itemList; } }如上是追随者的结构 阅读全文