14 lines
292 B
C#
14 lines
292 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// 材料 - 数据
|
|
/// </summary>
|
|
public class DataMaterial : DataItem {
|
|
/// <summary> 物品数量 </summary>
|
|
public int quantity;
|
|
/// <summary> 堆叠上限 </summary>
|
|
public int maxStack;
|
|
}
|