]> git.sesse.net Git - remoteglot/blob - book/count.h
1d8043f9e0fb67b4391c1441532190eac7cd8870
[remoteglot] / book / count.h
1
2 struct Count {
3         int white = 0;
4         int draw = 0;
5         int black = 0;
6         int opening_num = -1;
7         float avg_white_elo = 0.0;
8         float avg_black_elo = 0.0;
9 };