Cavoke  1.1.0
A Platform for creating and hosting multiplayer turn-based board games
Loading...
Searching...
No Matches
creategameview.h
1#ifndef CAVOKE_CLIENT_CREATEGAMEVIEW_H
2#define CAVOKE_CLIENT_CREATEGAMEVIEW_H
3
4#include <QMainWindow>
5
6namespace Ui {
8}
9
10class CreateGameView : public QMainWindow {
11 Q_OBJECT
12public:
13 explicit CreateGameView(QWidget *parent = nullptr);
15
16public slots:
17signals:
18 void shownStartView();
19 void startedCreateGameRoutine(const QString &roomName);
20
21private slots:
22 void on_backButton_clicked();
23 void on_createGameButton_clicked();
24
25private:
26 Ui::CreateGameView *ui;
27};
28
29#endif // CAVOKE_CLIENT_CREATEGAMEVIEW_H