14 lines
281 B
C#
14 lines
281 B
C#
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
|
|
|
namespace Server.DB.Documents;
|
|
|
|
public enum InventoryTab : byte
|
|
{
|
|
WornEquipment = 0,
|
|
WornCashEquipment = 1,
|
|
Equipment = 2,
|
|
Etc = 3,
|
|
Cash = 4,
|
|
Warehouse = 5,
|
|
GiftBox = 6
|
|
}
|