9 lines
185 B
C#
9 lines
185 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public enum InventoryItems {
|
||
|
//EMPTY SHOULD ALWAYS BE THE LAST!
|
||
|
HealthPotion = 0,
|
||
|
Empty = 1
|
||
|
}
|