aboutsummaryrefslogtreecommitdiff
path: root/src/game_tab/Game.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game_tab/Game.hpp')
-rw-r--r--src/game_tab/Game.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game_tab/Game.hpp b/src/game_tab/Game.hpp
index d6e1582..94f49fc 100644
--- a/src/game_tab/Game.hpp
+++ b/src/game_tab/Game.hpp
@@ -11,12 +11,12 @@
*/
class Game {
/// @brief 64 char string that contains all the pieces on the board (used in BoardCanvas)
+ HalfMove *current;
+ HalfMove *moves;
std::string board;
std::string initial_fen;
std::string result;
std::unordered_map<std::string, std::string> tags;
- HalfMove *moves;
- HalfMove *current;
/// @brief Used by various methods of the class
chessarbiter::ChessArbiter arbiter;