Wizard
Software Engineering Project - Wizard
Loading...
Searching...
No Matches
ScoreBoardDialog.h
1//
2// Created by hannah on 12/8/24.
3//
4
5#ifndef WIZARD_SCOREBOARDDIALOG_H
6#define WIZARD_SCOREBOARDDIALOG_H
7
8#include <wx/wx.h>
9#include <wx/statbmp.h>
10#include<vector>
11#include "../../common/game_state/game_state.h"
12
13class ScoreBoardDialog: public wxDialog {
14public: ScoreBoardDialog(wxWindow* parent, const std::string& title, const std::string& message, game_state* gameState);
15
16private:
17 wxButton* okButton;
18
19};
20
21
22#endif //WIZARD_SCOREBOARDDIALOG_H
23
Definition ScoreBoardDialog.h:13
Definition game_state.h:18