Foerming/Assets/Scripts/Items/Scythe.cs
2022-05-09 23:39:29 +02:00

9 lines
212 B
C#

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