1
Fork 0
slime-blood-and-pain/Assets/Scripts/InventoryItems.cs

9 lines
185 B
C#
Raw Normal View History

2019-04-28 19:01:35 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public enum InventoryItems {
//EMPTY SHOULD ALWAYS BE THE LAST!
HealthPotion = 0,
Empty = 1
}