Scriptum/Assets/Scripts/Inventory/InventorySlot.cs

13 lines
207 B
C#
Raw Normal View History

2022-05-29 12:33:43 +02:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2022-05-29 21:54:28 +02:00
public class InventorySlot : ItemSlot
2022-05-29 12:33:43 +02:00
{
2022-05-29 21:54:28 +02:00
public override bool CanReceiveItem(Item item)
2022-05-29 12:33:43 +02:00
{
return true;
2022-05-29 12:33:43 +02:00
}
}