9 lines
237 B
C#
9 lines
237 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Items {
|
|
public class WateringCan : UsableItem {
|
|
public WateringCan():base("Watering Can", "Used to water planted crops.", 4){}
|
|
}
|
|
}
|