allow to re-start arenas

This commit is contained in:
2026-05-03 20:41:59 +02:00
parent 55b42a03d9
commit 6405ad6b3f
4 changed files with 18 additions and 6 deletions

View File

@@ -33,12 +33,15 @@ private:
struct ArenaEntry
{
ArenaConfig config;
std::unique_ptr<ArenaSimulation> simulation;
std::thread worker;
ArenaWidget* widget;
};
std::vector<ArenaEntry> m_arenas;
const GameConfig& m_gameConfig;
unsigned int m_nextSeed;
QPushButton* m_startAllButton;
QTimer* m_pollTimer;
};