mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-11 22:29:52 -05:00
17 lines
366 B
C#
17 lines
366 B
C#
namespace PKHeX.Core
|
|
{
|
|
public enum MenuOrderOption : uint
|
|
{
|
|
Pokédex = 0x00,
|
|
Pokémon = 0x01,
|
|
Bag = 0x02,
|
|
League_Card = 0x03,
|
|
Save = 0x04,
|
|
Town_Map = 0x05,
|
|
Pokémon_Camp = 0x06,
|
|
Mystery_Gift = 0x07,
|
|
VS = 0x08,
|
|
Options = 0x09,
|
|
}
|
|
}
|