14 lines
316 B
C#
14 lines
316 B
C#
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
[System.Serializable]
|
|||
|
public class CarConfig
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 车名/车型
|
|||
|
/// </summary>
|
|||
|
public string 车名;
|
|||
|
|
|||
|
public GameObject 车辆基础物体;
|
|||
|
public List<CarComponentConfig> 车辆组件 = new List<CarComponentConfig>();
|
|||
|
}
|