Files
MuHua-UIElements/Assets/ModuleCore/ModuleInventory/DataItem/DataItemMaterial.cs
T
MuHua-123 7324361948 1
2025-09-18 16:56:00 +08:00

14 lines
282 B
C#

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