summaryrefslogtreecommitdiff
path: root/ai_rand.h
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2018-06-30 00:30:14 +0200
committerTom Smeding <tom.smeding@gmail.com>2018-06-30 00:30:14 +0200
commit44421af15c2f361764b8741bb93f9fddda3f8a8b (patch)
tree15e541b25d145595279de6067cb839ebbb16b982 /ai_rand.h
Initial
Diffstat (limited to 'ai_rand.h')
-rw-r--r--ai_rand.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/ai_rand.h b/ai_rand.h
new file mode 100644
index 0000000..defa011
--- /dev/null
+++ b/ai_rand.h
@@ -0,0 +1,8 @@
+#pragma once
+
+#include "board.h"
+
+
+namespace AI::Rand {
+ Move findMove(const Board &bd, int player);
+}