9fa400f9a7
Simple code refaactor
13 lines
207 B
C#
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;
|
|
}
|
|
|
|
}
|