diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-03-28 12:25:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-28 12:25:48 -0400 |
commit | 24b294236b678211875e61f3055a996560f694b8 (patch) | |
tree | 291ac628d148a8074008f53b12b73945e166c535 /include/constants | |
parent | a473ca70a2ca5f3ca4a11a109533902c7605e7d4 (diff) | |
parent | eebe7f2233618beda858a3cc9ddf0d1d52e3b4c2 (diff) |
Merge pull request #313 from GriffinRichards/doc-trainertypes
Use trainer type constants
Diffstat (limited to 'include/constants')
-rw-r--r-- | include/constants/trainer_types.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/constants/trainer_types.h b/include/constants/trainer_types.h new file mode 100644 index 000000000..c2adf1e12 --- /dev/null +++ b/include/constants/trainer_types.h @@ -0,0 +1,8 @@ +#ifndef GUARD_CONSTANTS_TRAINER_TYPES_H +#define GUARD_CONSTANTS_TRAINER_TYPES_H + +#define TRAINER_TYPE_NONE 0 +#define TRAINER_TYPE_NORMAL 1 +#define TRAINER_TYPE_SEE_ALL_DIRECTIONS 2 + +#endif // GUARD_CONSTANTS_TRAINER_TYPES_H |