diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-08-15 16:19:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-15 16:19:18 -0700 |
commit | f65da613cf04772d55cfcdaca8266479ea2c662b (patch) | |
tree | b6518b6f47517d6a416235c0c14dabd38e380e9b /include/contest_ai.h | |
parent | d28398b8dddd249eb95b60a2609a60de03f7839f (diff) | |
parent | dc6cf391cec2bdf1fd0717f6ece90d3b1a55fccd (diff) |
Merge pull request #299 from DizzyEggg/contest_ai
Decompile Contest ai
Diffstat (limited to 'include/contest_ai.h')
-rw-r--r-- | include/contest_ai.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/contest_ai.h b/include/contest_ai.h new file mode 100644 index 000000000..20b9eec10 --- /dev/null +++ b/include/contest_ai.h @@ -0,0 +1,16 @@ +#ifndef GUARD_CONTESTAI_H +#define GUARD_CONTESTAI_H + +// AI states +enum +{ + CONTESTAI_SETTING_UP, + CONTESTAI_PROCESSING, + CONTESTAI_FINISHED, + CONTESTAI_DO_NOT_PROCESS +}; + +void ContestAI_ResetAI(u8); +u8 ContestAI_GetActionToUse(void); + +#endif // GUARD_CONTESTAI_H |