9 lines
217 B
C#
9 lines
217 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Items {
|
|
public class Hoe : Item {
|
|
public Hoe() : base("Hoe", "Used to hoe the ground into farmland.", 2){}
|
|
}
|
|
}
|