2026-05-06 15:07:56 +02:00

15 lines
190 B
C#

using System;
namespace DuloGames.UI
{
[Serializable]
public enum UIItemSlot_Group : int
{
None = 0,
Inventory = 1,
Dialog = 2,
QuestLog = 3,
Vendor = 4
}
}