mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-26 04:05:51 -05:00
28 lines
537 B
C
28 lines
537 B
C
#ifndef POKEPLATINUM_PM_VERSION_H
|
|
#define POKEPLATINUM_PM_VERSION_H
|
|
|
|
#define SAPPHIRE 1
|
|
#define RUBY 2
|
|
#define EMERALD 3
|
|
#define FIRERED 4
|
|
#define LEAFGREEN 5
|
|
#define HEARTGOLD 7
|
|
#define SOULSILVER 8
|
|
#define DIAMOND 10
|
|
#define PEARL 11
|
|
#define PLATINUM 12
|
|
#define COLOSSEUM 15
|
|
|
|
#define JAPANESE 1
|
|
#define ENGLISH 2
|
|
#define FRENCH 3
|
|
#define ITALIAN 4
|
|
#define GERMAN 5
|
|
#define SPANISH 7
|
|
#define KOREAN 8
|
|
|
|
extern const u8 gGameVersion;
|
|
extern const u8 gGameLanguage;
|
|
|
|
#endif // POKEPLATINUM_PM_VERSION_H
|