diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2019-01-05 14:55:41 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-05 14:55:41 -0600 |
commit | 37d7348e01e1d9afb79b5eb10ec28af948bbaf1e (patch) | |
tree | 6fdc1e1e4ad49d5239d94650bc4b3f7ffe8ee4eb /include | |
parent | cbf7d6cee59e7aa2cdef6b9e89fa62fbeb4a07c5 (diff) | |
parent | aeaf390706c90c464f132dc5173587361aabb8d0 (diff) |
Merge pull request #505 from Slawter666/secret-base
Use constants in secret_base.c
Diffstat (limited to 'include')
-rwxr-xr-x | include/constants/secret_bases.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/constants/secret_bases.h b/include/constants/secret_bases.h index 0f51054a8..2f405317d 100755 --- a/include/constants/secret_bases.h +++ b/include/constants/secret_bases.h @@ -1,6 +1,13 @@ #ifndef GUARD_CONSTANTS_SECRET_BASES_H #define GUARD_CONSTANTS_SECRET_BASES_H +#define SECRET_BASE_RED_CAVE 1 +#define SECRET_BASE_BROWN_CAVE 2 +#define SECRET_BASE_BLUE_CAVE 3 +#define SECRET_BASE_YELLOW_CAVE 4 +#define SECRET_BASE_TREE 5 +#define SECRET_BASE_SHRUB 6 + // Each secret base location is assigned an identifier value. // The secret base's map is determined by (id / 10). The ones // digit is used to differentiate secret bases using the same map. |