diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-08-12 17:26:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-12 17:26:01 -0700 |
commit | d9883945954a30e4b753ecbd5d807f4b6cd2a38a (patch) | |
tree | 093c45ab4de91a75d546f58a6672dfc72136677c /include/constants | |
parent | e005410884803f1ec8f5942bd0c8d2da5c2e29c8 (diff) |
More data dumping and some code cleaning (#46)
* more data dumping and some code cleaning
* split out cutscene scripts
* initial start at script conversion
* more script work
* use correct type
* clearer up struct field names
* split known scripts into seperate files
* no need to preproc pure ascii strings in debug
* more cutscene work
* split out personality test scripts
* solidify text macros and doc some dungeon fields
* more scripting work
Diffstat (limited to 'include/constants')
-rw-r--r-- | include/constants/colors.h | 12 | ||||
-rw-r--r-- | include/constants/global.h | 7 |
2 files changed, 19 insertions, 0 deletions
diff --git a/include/constants/colors.h b/include/constants/colors.h new file mode 100644 index 0000000..26d3ca6 --- /dev/null +++ b/include/constants/colors.h @@ -0,0 +1,12 @@ +#ifndef GUARD_CONSTANTS_COLORS_H +#define GUARD_CONSTANTS_COLORS_H + +#define COLOR_WHITE 0 +#define COLOR_BLUE 1 +#define COLOR_RED 2 +#define COLOR_BLACK 3 +#define COLOR_GREEN 4 +#define COLOR_CYAN 5 +#define COLOR_YELLOW 6 + +#endif //GUARD_CONSTANTS_COLORS_H diff --git a/include/constants/global.h b/include/constants/global.h new file mode 100644 index 0000000..f4e5961 --- /dev/null +++ b/include/constants/global.h @@ -0,0 +1,7 @@ +#ifndef GUARD_CONSTANTS_GLOBAL_H +#define GUARD_CONSTANTS_GLOBAL_H + +#define POKEMON_NAME_LENGTH 10 +#define TEAM_NAME_LENGTH 10 + +#endif // GUARD_CONSTANTS_GLOBAL_H |