using SHADE;
using System;
public class Item : Script
{
public enum ItemCategory
LIGHT,
MEDIUM,
HEAVY
}
public ItemCategory currCategory;
public Item(GameObject gameObj) : base(gameObj) { }
protected override void awake()