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

9 lines
223 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Items {
public class Hoe : UsableItem {
public Hoe() : base("Hoe", "Used to hoe the ground into farmland.", 2){}
}
}