summaryrefslogtreecommitdiff
path: root/include/contest_ai.h
diff options
context:
space:
mode:
authorDizzyEggg <jajkodizzy@wp.pl>2018-08-15 11:43:57 +0200
committerDizzyEggg <jajkodizzy@wp.pl>2018-08-15 11:43:57 +0200
commitc806992cfc5a4fac53f2c8a52b32f7a039773e41 (patch)
tree017808f86a4c1202ccd275443a87cb6e762d59c8 /include/contest_ai.h
parent6dac87abfd2bea0ddf126cdc1e9c31757c8fee36 (diff)
Port contest ai from pokeruby
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