diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2017-09-09 12:06:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-09 12:06:15 -0500 |
commit | eb280768a48eba5332468b463aab962e1eafb18e (patch) | |
tree | 8cc165f2f24f7b09823ab43a91a281ef22b7f6a3 /include/easy_chat.h | |
parent | 675bdb52508deb085813588203baa7cd9c9de24c (diff) | |
parent | 10a525d5a072892d2e94c2cf31d5abc9197cae20 (diff) |
Merge pull request #23 from DizzyEggg/clean_up2
Splitting, labelling, decomp
Diffstat (limited to 'include/easy_chat.h')
-rw-r--r-- | include/easy_chat.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/easy_chat.h b/include/easy_chat.h new file mode 100644 index 000000000..5143aa39c --- /dev/null +++ b/include/easy_chat.h @@ -0,0 +1,33 @@ +#ifndef GUARD_EASYCHAT_H +#define GUARD_EASYCHAT_H + +// Taken from Pokeruby, check if it's correct +enum +{ + EC_GROUP_POKEMON, + EC_GROUP_TRAINER, + EC_GROUP_STATUS, + EC_GROUP_BATTLE, + EC_GROUP_GREETINGS, + EC_GROUP_PEOPLE, + EC_GROUP_VOICES, + EC_GROUP_SPEECH, + EC_GROUP_ENDINGS, + EC_GROUP_FEELINGS, + EC_GROUP_CONDITIONS, + EC_GROUP_ACTIONS, + EC_GROUP_LIFESTYLE, + EC_GROUP_HOBBIES, + EC_GROUP_TIME, + EC_GROUP_MISC, + EC_GROUP_ADJECTIVES, + EC_GROUP_EVENTS, + EC_GROUP_MOVE_1, + EC_GROUP_MOVE_2, + EC_GROUP_TRENDY_SAYING, + EC_GROUP_POKEMON_2, +}; + +void InitEasyChatPhrases(void); + +#endif // GUARD_EASYCHAT_H |