mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-22 06:57:33 -05:00
18 lines
334 B
C
18 lines
334 B
C
#ifndef POKEPLATINUM_PM_VERSION_H
|
|
#define POKEPLATINUM_PM_VERSION_H
|
|
|
|
#include "generated/versions.h"
|
|
|
|
#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
|