using System.Collections; using System.Collections.Generic; using UnityEngine; namespace TRInventoryUpdatable { public class OilInventoryItem : MonoBehaviour, InventoryUpdatable { public void InventoryUpdate() { InventoryManager.GetInstance().ringInventoryGear.itemName.text = "Oil"; InventoryManager.GetInstance().ringInventoryGear.itemDescription.text = ""; } } }