base constructor for every Item

This commit is contained in:
dhain 2022-05-09 23:39:29 +02:00
parent c3166c5b64
commit 384ce05bb7
8 changed files with 20 additions and 9 deletions

View file

@ -3,6 +3,7 @@ using System.Collections.Generic;
using UnityEngine;
namespace Items {
public class Hoe : MonoBehaviour {
public class Hoe : Item {
public Hoe() : base("Hoe", "Used to hoe the ground into farmland.", 2){}
}
}