Cyber/Assets/Scripts/Items/InventoryAction.cs

31 lines
635 B
C#
Raw Normal View History


namespace Cyber.Items {
/// <summary>
2017-05-15 21:30:12 +02:00
/// Represents an inventory action.
/// </summary>
public enum InventoryAction : byte {
/// <summary>
2017-05-15 21:30:12 +02:00
/// Equip an item, given int is the ID of the item equipping.
/// </summary>
Equip,
/// <summary>
/// Unequip the given slot, removing anything that was inside of it.
/// </summary>
2017-05-15 21:30:12 +02:00
Unequip,
/// <summary>
/// Use the item in the given slot.
/// </summary>
2017-05-17 00:28:12 +02:00
Use,
/// <summary>
/// Switch items between two slots.
/// </summary>
Switch
}
}