mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-04 17:59:16 +00:00
29 lines
470 B
C#
29 lines
470 B
C#
namespace PKHeX.Core;
|
|
|
|
public enum Wallpaper4Pt : byte
|
|
{
|
|
Forest = 0,
|
|
City = 1,
|
|
Desert = 2,
|
|
Savanna = 3,
|
|
Crag = 4,
|
|
Volcano = 5,
|
|
Snow = 6,
|
|
Cave = 7,
|
|
Beach = 8,
|
|
Seafloor = 9,
|
|
River = 10,
|
|
Sky = 11,
|
|
Checks = 12,
|
|
PokeCenter = 13,
|
|
Machine = 14,
|
|
Simple = 15,
|
|
Distortion = 16,
|
|
Contest = 17,
|
|
Nostalgic = 18,
|
|
Croagunk = 19,
|
|
trio = 20,
|
|
PikaPika = 21,
|
|
Legend = 22,
|
|
Team_Galactic = 23,
|
|
}
|