Files
HauntedBloodlines/Assets/Scripts/Inventory/Items/OilInventoryItem.cs
2025-05-29 22:31:40 +03:00

15 lines
426 B
C#

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 = "";
}
}
}