removed not needed tooltip

This commit is contained in:
TAASONI3
2023-12-26 19:40:38 +01:00
parent bf705a52a8
commit a8c4cdcf3c
7 changed files with 122 additions and 92 deletions

View File

@@ -10,7 +10,6 @@ namespace Assets.Scripts
{
public class InventorySlot : MonoBehaviour
{
TooltipHandler tooltip;
Item[] items = new Item[3];
int currentBag = 0;
public ItemPlace place;
@@ -19,7 +18,6 @@ namespace Assets.Scripts
private void Start()
{
tooltip = GameObject.Find("TooltipHandler").GetComponent<TooltipHandler>();
inventory = GameObject.Find("Inventory").GetComponent<Inventory>();
loadImages();
}