diff options
author | pommicket <pommicket@gmail.com> | 2025-08-21 21:49:21 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-08-21 21:49:21 -0400 |
commit | 15fb752e8502f0b5c7e5f579dd3ff0eb8baabf3b (patch) | |
tree | 73fbd83ead7022ff3e9eeafc97f043dd61a85059 /quacker/macondo.h | |
parent | b721c4a19a10f436329f2441156f45b19924205a (diff) |
Fix various bugs with Macondo moves
Diffstat (limited to 'quacker/macondo.h')
-rw-r--r-- | quacker/macondo.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/quacker/macondo.h b/quacker/macondo.h index 83eb031..9c85987 100644 --- a/quacker/macondo.h +++ b/quacker/macondo.h @@ -20,9 +20,6 @@ public: void stop(); // should Macondo be used for simulations? bool useForSimulation() const; - inline const Quackle::MoveList &getMoves() const { return m_moves; } - inline bool hasMoves() const { return !m_moves.empty(); } - inline void clearMoves() { m_moves.clear(); } // returns whether there have been any updates to moves since last time anyUpdates() was called. inline bool anyUpdates() { bool any = m_anyUpdates; @@ -55,7 +52,6 @@ private: QPushButton *m_solve; Quackle::Game *m_game; MacondoBackend *m_backend; - Quackle::MoveList m_moves; Quackle::MoveList m_movesFromKibitzer; int m_tilesUnseen = 93; int m_viewingPlyNumber = 0; |