mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-28 13:04:52 -05:00
* 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
|