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

9 lines
218 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Items {
public class Scythe : UsableItem {
public Scythe() : base("Scythe", "Used to cut down crops.", 3){}
}
}