namespace Cyber.Items {
///
/// Represents an inventory action
///
public enum InventoryAction : byte {
///
/// Equip an item, given int is the ID of the item equipping
///
Equip,
///
/// Unequip the given slot, removing anything that was inside of it.
///
Unequip
}
}