using System.Collections.Generic; using UnityEngine; [System.Serializable] public class CarConfig { /// /// 车名/车型 /// public string 车名; public GameObject 车辆基础物体; public List 车辆组件 = new List(); }