mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-15 16:41:03 -05:00
Closes #3177 Format sizes are now accurate to game structure sizes. Added a few more editable fields, rid of label/textbox/etc for general base editing -- use a PropertyGrid instead. Feels nice having a bank of saves to reference + idb to discover the struct layout.
12 lines
173 B
C#
12 lines
173 B
C#
namespace PKHeX.Core
|
|
{
|
|
public enum SecretBase6Rank
|
|
{
|
|
Default = 0,
|
|
Bronze = 1,
|
|
Silver = 2,
|
|
Gold = 3,
|
|
Platinum = 4,
|
|
}
|
|
}
|