]> git.sesse.net Git - remoteglot-book/blob - count.proto
Indent fix.
[remoteglot-book] / count.proto
1 message Count {
2         // Number of games.
3         optional int32 white = 1;
4         optional int32 draw = 2;
5         optional int32 black = 3;
6
7         // Number of games played by computers.
8         optional int32 computer = 12;
9
10         // Opening number (32-bit hash value).
11         optional fixed32 opening_num = 4;
12
13         // Elo statistics for this position.
14         optional int64 sum_white_elo = 5;
15         optional int64 sum_black_elo = 6;
16         optional int32 num_elo = 7;
17
18         // First timestamp this position/move was seen, and the byte offset
19         // into the PGN file for that game.
20         optional int64 first_timestamp = 8 [default=32503680000];
21         optional int32 pgn_file_num = 9;
22         optional int64 pgn_start_position = 10;
23
24         // Moves seen from this position.
25         repeated string move = 11;
26 };