summaryrefslogtreecommitdiff
path: root/include/contest_ai.h
diff options
context:
space:
mode:
authorCameron Hall <camthesaxman@users.noreply.github.com>2018-01-14 14:04:11 -0600
committerGitHub <noreply@github.com>2018-01-14 14:04:11 -0600
commit408c6ceddcc54a3aa45cdbb2923dc443d2e6297f (patch)
tree13fe61afef2608d6c9a595eb68396d62606f0b6a /include/contest_ai.h
parent3e2f01c1eab4414f1c09844d19ae42535b8c4c4b (diff)
parenta5403f03dd49711f8c2f719e8bfa8a83f427563c (diff)
Merge pull request #526 from ProjectRevoTPP/contest_ai
decompile contest_ai.c
Diffstat (limited to 'include/contest_ai.h')
-rwxr-xr-xinclude/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 100755
index 000000000..da143b541
--- /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