continuity/Server/DB/Documents/InventoryTab.cs
Timothy Schenk 46649adfd8 feat: character creation works
requires base stats and parsing of values provided by user
2023-11-15 20:00:08 +01:00

12 lines
199 B
C#

namespace Server.DB.Documents;
public enum InventoryTab : byte
{
WornEquipment = 0,
WornCashEquipment = 1,
Equipment = 2,
Etc = 3,
Cash = 4,
Warehouse = 5,
GiftBox = 6
}