Files
MuHua-UIElements/Assets/ModuleCore/ModuleFormula/DataMaterial.cs
T
2025-09-25 17:50:28 +08:00

14 lines
283 B
C#

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