mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2026-02-10 09:54:36 +01:00
14 lines
363 B
C#
14 lines
363 B
C#
namespace Glamourer.GameData;
|
|
|
|
public enum MenuType
|
|
{
|
|
ListSelector = 0,
|
|
IconSelector = 1,
|
|
ColorPicker = 2,
|
|
DoubleColorPicker = 3,
|
|
IconCheckmark = 4,
|
|
Percentage = 5,
|
|
Checkmark = 6, // custom
|
|
Nothing = 7, // custom
|
|
List1Selector = 8, // custom, 1-indexed lists
|
|
}
|