Foerming/Assets/Scripts/Items/WheatSeed.cs
2022-05-10 00:01:57 +02:00

9 lines
248 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Items {
public class WheatSeed : UsableItem {
public WheatSeed() : base("Wheat Seeds", "When planted on farmland, wheat will grow.", 6){}
}
}