mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-27 15:00:33 +00:00
3e5dd1d047
* death by 74 files * 20% reached * doc move stuff in pokemon * fix undef reference * doc more and plumb a few more constanst for num party members and num moves * that struct is def PokemonMove.. clean up all code with it
14 lines
247 B
C
14 lines
247 B
C
#ifndef GUARD_CONSTANTS_GLOBAL_H
|
|
#define GUARD_CONSTANTS_GLOBAL_H
|
|
|
|
#define POKEMON_NAME_LENGTH 10
|
|
#define TEAM_NAME_LENGTH 10
|
|
#define MAX_TEAM_MEMBERS 4
|
|
|
|
#define MAX_MON_MOVES 4
|
|
|
|
#define MALE 0
|
|
#define FEMALE 1
|
|
|
|
#endif // GUARD_CONSTANTS_GLOBAL_H
|