This commit is contained in:
MuHua-123
2025-09-18 16:56:00 +08:00
parent 5d8f76b3e6
commit 7324361948
385 changed files with 22988 additions and 198 deletions
@@ -0,0 +1,16 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 物品
/// </summary>
public class DataItem {
/// <summary> 名字 </summary>
public string name;
/// <summary> 图片 </summary>
public Sprite sprite;
/// <summary> 堆叠数量 </summary>
public virtual int MaxStack => 1;
}