diff options
author | AnonymousRandomPerson <chenghanngan.us@gmail.com> | 2021-12-28 22:15:56 -0600 |
---|---|---|
committer | AnonymousRandomPerson <chenghanngan.us@gmail.com> | 2021-12-28 22:15:56 -0600 |
commit | ea10f7b7bd6957312b9b0dfa371761c5936bc80a (patch) | |
tree | 7bbce0d40ce8c714e793ef22f3a7c125f9ff3fbd /include | |
parent | d40d2e55a304ec355595b4a0f9f8d51ca3eb2769 (diff) |
Created header for pokemon_3
Diffstat (limited to 'include')
-rw-r--r-- | include/dungeon_entity.h | 2 | ||||
-rw-r--r-- | include/pokemon_3.h | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/include/dungeon_entity.h b/include/dungeon_entity.h index 527d817..233ef8e 100644 --- a/include/dungeon_entity.h +++ b/include/dungeon_entity.h @@ -1,8 +1,8 @@ #ifndef GUARD_DUNGEON_ENTITY_H #define GUARD_DUNGEON_ENTITY_H +#include "constants/global.h" #include "constants/move.h" -#include "global.h" #include "item.h" #include "position.h" diff --git a/include/pokemon_3.h b/include/pokemon_3.h new file mode 100644 index 0000000..968e2ef --- /dev/null +++ b/include/pokemon_3.h @@ -0,0 +1,6 @@ +#ifndef GUARD_POKEMON_3_H +#define GUARD_POKEMON_3_H + +bool8 IsIQSkillSet(u8 *IQSkillsEnabled, u32 IQSkill); + +#endif |