Wizard
Software Engineering Project - Wizard
Loading...
Searching...
No Matches
ScoreDialog.h
1//
2// Created by hannah on 11/11/24.
3//
4
5#ifndef SCOREDIALOG_H
6#define SCOREDIALOG_H
7
8#include <wx/wx.h>
9#include <wx/timer.h>
10#include <string>
11
12class ScoreDialog : public wxDialog{
13public:
14 ScoreDialog(wxWindow* parent, const std::string& title, const std::string& message);
15 ~ScoreDialog() = default;
16private:
17 wxTimer _closeTimer;
18
19 void OnTimerClose(wxTimerEvent& event);
20
21 wxDECLARE_EVENT_TABLE(); // For handling wxWidgets events
22};
23
24
25
26#endif
Definition ScoreDialog.h:12