Files
2026-03-04 09:37:33 +08:00

13 lines
266 B
C#

using UnityEngine;
namespace UFS3
{
[CreateAssetMenu(fileName = "WeightData", menuName = "Data/WeightData")]
public class WeightData : BaseItemData, IItemType
{
public ItemType ItemType => ItemType.Weight;
public override string StatisticText { get; }
}
}