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