using System.Collections; using System.Collections.Generic; using UnityEngine; public class FoodItemInfo : ItemInfo { public string Type; public int Recover = 1; public int indexID = 0; public int itemID = 1; public FoodItemInfo (int item_id, int recover, string type) { itemID = item_id; Recover = recover; Type = type; } }