mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
b1641772e6
Refactors the Memecrypto API to improve generalized usage. Adds unit tests that verify memecrypto works, so that future changes don't potentially break the code.
21 lines
No EOL
479 B
C#
21 lines
No EOL
479 B
C#
namespace PKHeX.Core
|
|
{
|
|
public enum MemeKeyIndex
|
|
{
|
|
LocalWireless = -1,
|
|
FriendlyCompetition = 0,
|
|
LiveCompetition = 1,
|
|
RentalTeam = 2,
|
|
PokedexAndSaveFile = 3,
|
|
GaOle = 4,
|
|
MagearnaEvent = 5,
|
|
MoncolleGet = 6,
|
|
IslandScanEventSpecial = 7,
|
|
TvTokyoDataBroadcasting = 8,
|
|
CapPikachuEvent = 9,
|
|
Unknown10 = 10,
|
|
Unknown11 = 11,
|
|
Unknown12 = 12,
|
|
Unknown13 = 13
|
|
}
|
|
} |