diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-03-27 10:32:39 -0400 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2020-04-28 19:59:16 -0500 |
commit | 4dabc1bc7b211f3b4edceddc65d20b05b78667e5 (patch) | |
tree | cdd0d8ca845060eda6cb4a731c45cd3b13a5f9f7 /include | |
parent | 0459f99a95dc3c8f15749b30e20b8a9bbceef41b (diff) |
Use trainer type constants
Diffstat (limited to 'include')
-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 |