Scriptum/Assets/Scripts/Inventory/InventorySlot.cs
kabix09 9fa400f9a7 Add inventory Drag & Drop
Simple code refaactor
2022-06-05 10:30:52 +02:00

13 lines
207 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class InventorySlot : ItemSlot
{
public override bool CanReceiveItem(Item item)
{
return true;
}
}