Files
MuHua-UIElements/Assets/ModuleCore/ModuleInventory/DataItem/DataMaterial.cs
T
MuHua-123 473e4ffbe4 1
2025-09-19 17:12:46 +08:00

14 lines
278 B
C#

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