using UnityEngine; using System.Collections; using System.Collections.Generic; /// /// Group.cs——CSV信息类 /// public class EquipGroup { /// /// id /// public string ID { get; set; } /// /// 组 /// public string Name { get; set; } /// /// 类型 /// public List Types { get; set; } }