diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2018-01-14 14:03:15 -0500 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2018-01-14 14:03:15 -0500 |
commit | c0b4770984dfc7f699f60a58085c9d1ff1098c08 (patch) | |
tree | 102d55b5a872019f733862026e4076b2987dabc5 | |
parent | d7d947c6913d1a2a7a6401b8aac2041d536ad978 (diff) |
dont forget the header
-rwxr-xr-x | include/contest_ai.h | 16 |
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 |