18 lines
274 B
C#
Raw Normal View History

2026-05-06 15:07:56 +02:00
namespace DuloGames.UI
{
public enum UIWindowID : int
{
None = 0,
Custom = 1,
Settings = 2,
GameMenu = 3,
ModalBox = 4,
Character = 5,
Inventory = 6,
SpellBook = 7,
Dialog = 8,
QuestLog = 9,
Vendor = 10
}
}