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