using System.Collections; using System.Collections.Generic; using UnityEngine; /// /// 材料 - 物品 /// public class DataItemMaterial : DataItem { /// 最大堆叠数 public int maxStack; public override int MaxStack => maxStack; }