15 lines
190 B
C#
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
|
|
}
|
|
}
|