13 lines
296 B
C#
13 lines
296 B
C#
using UnityEngine;
|
|
|
|
namespace UFS3
|
|
{
|
|
[CreateAssetMenu(fileName = "Data/BobberData", menuName = "Data/BobberData")]
|
|
public class BobberData : BaseItemData, IItemType
|
|
{
|
|
public ItemType ItemType => ItemType.Bobber;
|
|
|
|
public override string StatisticText => $"<b>Weight:</b> {weight}g\n";
|
|
}
|
|
}
|