18 lines
274 B
C#
18 lines
274 B
C#
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
|
|
}
|
|
}
|