add restart button to game over screen

This commit is contained in:
2026-04-21 20:38:18 +02:00
parent 043aaf774a
commit b7f2005504
5 changed files with 76 additions and 1 deletions

View File

@@ -29,6 +29,9 @@ public:
explicit Simulation(const GameConfig& config, unsigned int seed = 0);
~Simulation();
// Reinitializes all simulation state as if constructed fresh.
void reset(unsigned int seed = 0);
// Advances the simulation by one tick. Tick order per architecture.md §Tick Order.
void tick();