9 lines
283 B
C#
9 lines
283 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Items {
|
|
public class Wheat : Item {
|
|
public Wheat() : base("Wheat", "Wheat is a grass widely cultivated for its seed, a cereal grain which is a worldwide staple food.", 5){}
|
|
}
|
|
}
|