summaryrefslogtreecommitdiff
path: root/include/contest_ai.h
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2018-01-14 17:25:07 -0500
committerPikalaxALT <pikalaxalt@gmail.com>2018-01-14 17:25:07 -0500
commitd357394a7a5d7d02544efe2e79382207d2d3054e (patch)
tree69b9cee5ea826cdb9be7fdbdf9def90ff50c6568 /include/contest_ai.h
parente79b3ce9ff39fa48928e8adf84dab542e78c5d64 (diff)
parent69a662de660bf075e97521c4d220c893b96b793b (diff)
Merge branch 'master' into fix_file_modes
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