mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-06-01 05:01:11 -05:00
22 lines
483 B
C
22 lines
483 B
C
#ifndef POKEHEARTGOLD_CONSTANTS_GLOBAL_H
|
|
#define POKEHEARTGOLD_CONSTANTS_GLOBAL_H
|
|
|
|
#include "constants/charcode.h"
|
|
#include "constants/global.fieldmap.h"
|
|
#include "constants/gx.h"
|
|
#include "constants/sdk_extras.h"
|
|
|
|
#define PLAYER_NAME_LENGTH 7
|
|
#define POKEMON_NAME_LENGTH 10
|
|
|
|
#define PLAYER_GENDER_MALE 0
|
|
#define PLAYER_GENDER_FEMALE 1
|
|
|
|
#define PARTY_SIZE 6
|
|
|
|
// move this to msl header?
|
|
#define S16_MAX 32767
|
|
#define U32_MAX 4294967292
|
|
|
|
#endif // POKEHEARTGOLD_CONSTANTS_GLOBAL_H
|