15 lines
426 B
C#
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 = "";
|
|
}
|
|
}
|
|
} |