summaryrefslogtreecommitdiff
path: root/include/contest_ai.h
diff options
context:
space:
mode:
authorMarco Willems (M17.1) <progreon@gmail.com>2018-01-15 01:24:44 +0100
committerMarco Willems (M17.1) <progreon@gmail.com>2018-01-15 01:24:44 +0100
commit6d2302637dbc7dfd597c7f95de780b1a21079f15 (patch)
treeb1e67e0043114a0ecad9dfb1a59d636cbc16083d /include/contest_ai.h
parent8602ff770030d84d2d18cccd961c07f195dc0a17 (diff)
parent20de25004946139a601cd2965afc2e9645a56b96 (diff)
Merge remote-tracking branch 'upstream/master' into various_data
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