-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.h
More file actions
42 lines (32 loc) · 663 Bytes
/
game.h
File metadata and controls
42 lines (32 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef GAME_H
#define GAME_H
#include "ia.h"
#include "ia2.h"
#include "help.h"
#include "mainwindow.h"
#include <QDialog>
#include <QProgressBar>
#include <QThread>
#include <QStandardItemModel>
//#include <QMediaPlayer>
//#include <QMediaPlaylist>
namespace Ui {
class game;
}
class game : public QDialog
{
Q_OBJECT
public:
explicit game(QWidget *parent = nullptr);
~game();
private slots:
void on_button3_clicked();
void on_button1_clicked();
void on_button2_clicked();
void on_button2_2_clicked();
void on_buttonh_clicked();
private:
Ui::game *ui;
//QStandardItemModel *m_playListModel;
};
#endif // GAME_H