aboutsummaryrefslogtreecommitdiff
path: root/src/CMI.hpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2023-05-10 07:07:41 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2023-05-10 07:07:41 +0200
commit14ac3bba33a037e4b46b3f7ec9ba05760145f288 (patch)
treeaf834d0fafe5abeb882d7e476e134ccb189be8ef /src/CMI.hpp
parent03ce4126cfa09ff0a55e70bdc44c1d5dd4035043 (diff)
Debug an cleaning source code
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 *);