diff options
author | pommicket <pommicket@gmail.com> | 2025-08-08 18:20:43 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-08-08 18:20:43 -0400 |
commit | 4c9d6ed3024d7869c427a7f6bd2f4f61feba027d (patch) | |
tree | 825cb60768ad68870140eb7981d9080b174e5981 /quacker/macondo.h | |
parent | 551c51c02649aeb38d72002d6bb70b58dbee1eb2 (diff) |
start extracting plays
Diffstat (limited to 'quacker/macondo.h')
-rw-r--r-- | quacker/macondo.h | 7 |
1 files changed, 5 insertions, 2 deletions
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 <QWidget> 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 |