Cluedo Solver v1.0
Cluedo game solver making deductions.
Loading...
Searching...
No Matches
PlayerDataModal.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "../Solver.hpp"
4
7
8namespace Cluedo {
9
10namespace UI {
11
17public:
19 explicit PlayerDataModal() = default;
20
22
24 void show(Solver const& solver);
25};
26
27}
28
29}
The file that contains the definition of the Cluedo::Solver class.
The solver of a Cluedo game.
Definition Solver.hpp:24
PlayerDataModal()=default
Constructs the modal.
void show(Solver const &solver)
Shows the modal.
Definition PlayerDataModal.cpp:12