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