summaryrefslogtreecommitdiff
path: root/include/contest_ai.h
diff options
context:
space:
mode:
authorDiegoisawesome <Diegoisawesome@users.noreply.github.com>2018-08-15 16:19:18 -0700
committerGitHub <noreply@github.com>2018-08-15 16:19:18 -0700
commitf65da613cf04772d55cfcdaca8266479ea2c662b (patch)
treeb6518b6f47517d6a416235c0c14dabd38e380e9b /include/contest_ai.h
parentd28398b8dddd249eb95b60a2609a60de03f7839f (diff)
parentdc6cf391cec2bdf1fd0717f6ece90d3b1a55fccd (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.h16
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