9 lines
218 B
C#
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){}
|
|
}
|
|
}
|