]> git.sesse.net Git - remoteglot/blobdiff - book/count.h
Add some opening book stuff that is still under development, and really should be...
[remoteglot] / book / count.h
diff --git a/book/count.h b/book/count.h
new file mode 100644 (file)
index 0000000..1d8043f
--- /dev/null
@@ -0,0 +1,9 @@
+
+struct Count {
+       int white = 0;
+       int draw = 0;
+       int black = 0;
+       int opening_num = -1;
+       float avg_white_elo = 0.0;
+       float avg_black_elo = 0.0;
+};