using System.Collections; using System.Collections.Generic; using UnityEngine; /// /// 工具或者材料基类 /// public abstract class BaseToolOrMaterial : MonoBehaviour { /// /// 工具Id /// public int toolId; /// /// 工器具类型 工具/材料 /// public E_ToolOrMaterial toolOrMaterial; }