36 void show_game_menu();
37 void show_settings_menu();
38 void show_about_menu();
41 void show_information_history_section();
42 void show_solutions_section();
49 Style m_style { Style::Dark };
51 std::optional<Solver> m_solver;
52 std::vector<std::pair<std::string, Solver>> m_information_history;
53 std::vector<Solver::SolutionProbabilityPair> m_solutions;
55 bool m_show_new_game_modal {
false };
58 bool m_show_add_information_modal {
false };
61 bool m_show_player_data_modal {
false };
MainWindow()
Constructs the window.
Definition MainWindow.cpp:13
void show()
Shows the window.
Definition MainWindow.cpp:160