From 4c9d6ed3024d7869c427a7f6bd2f4f61feba027d Mon Sep 17 00:00:00 2001 From: pommicket Date: Fri, 8 Aug 2025 18:20:43 -0400 Subject: start extracting plays --- quacker/macondo.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'quacker/macondo.h') diff --git a/quacker/macondo.h b/quacker/macondo.h index 77af35f..d8b2eb1 100644 --- a/quacker/macondo.h +++ b/quacker/macondo.h @@ -1,3 +1,6 @@ +#ifndef MACONDO_H +#define MACONDO_H + #include class QPushButton; @@ -13,7 +16,6 @@ public: Macondo(Quackle::Game *); public slots: void simulate(); - void updateResults(); private: enum class Command { None, @@ -21,8 +23,9 @@ private: Solve, }; QPushButton *m_simulateButton; - QTimer *m_updateTimer; MacondoBackend *m_backend; int m_viewingPlyNumber = 0; Command m_command = Command::None; }; + +#endif -- cgit v1.2.3