14 lines
282 B
C#
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;
|
|
}
|