aboutsummaryrefslogtreecommitdiff
path: root/src/CMI.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/CMI.hpp')
-rw-r--r--src/CMI.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/CMI.hpp b/src/CMI.hpp
index 999a0dc..bab5f20 100644
--- a/src/CMI.hpp
+++ b/src/CMI.hpp
@@ -16,13 +16,13 @@ namespace CMI {
*/
class HalfMove {
- HalfMove *parent;
- HalfMove *mainline;
std::vector<HalfMove *> variations;
std::string SAN, comment;
std::uint16_t number;
- std::uint8_t NAG;
bool isBlack;
+ std::uint8_t NAG;
+ HalfMove *parent;
+ HalfMove *mainline;
/// @brief Set the parent of current CMI::HalfMove, only used internally
void SetParent(HalfMove *);