summaryrefslogtreecommitdiff
path: root/include/contest_ai.h
diff options
context:
space:
mode:
authorCameron Hall <cameronghall@cox.net>2018-01-16 22:39:45 -0600
committerCameron Hall <cameronghall@cox.net>2018-01-16 22:39:45 -0600
commite11494a4c10765c5cd8b7fd18bafae48c1141c92 (patch)
treeafb3c407d504283ff6f7f0f53070ebe4f123865c /include/contest_ai.h
parent2f4f96ca5d62b4d18eb4d78eed71ea8073a385ff (diff)
parent58dd1c92ac6270d229c6762ca640118e4dd5e3cf (diff)
Merge branch 'master' into german_debug
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..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