Foerming/Assets/Scripts/Items/Wheat.cs
2022-05-09 23:39:29 +02:00

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){}
}
}