]> git.sesse.net Git - remoteglot-book/blobdiff - count.h
Reuse the remoteglot library for a new book project.
[remoteglot-book] / count.h
diff --git a/count.h b/count.h
new file mode 100644 (file)
index 0000000..1d8043f
--- /dev/null
+++ b/count.h
@@ -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;
+};