added Shop UI added Shop.cs * you now can buy items and you lose the cost when bought * shop is scrollable added comments in Inventory.cs, InventorySlot.cs, InventoryUI.cs now showing description when hovering over items in shop or inventory
5 lines
75 B
C#
5 lines
75 B
C#
using UnityEngine;
|
|
|
|
public interface IUsable {
|
|
public void Select();
|
|
}
|