Commit 741cd376 by grlabu

Upload New File

parent 1ec6801b
Showing with 29 additions and 0 deletions
#ifndef MAINMENU_H
#define MAINMENU_H
#include <QMainWindow>
QT_BEGIN_NAMESPACE
namespace Ui { class mainmenu; }
QT_END_NAMESPACE
class mainmenu : public QMainWindow
{
Q_OBJECT
public:
mainmenu(QWidget *parent = nullptr);
~mainmenu();
private slots:
void on_Playbutton_clicked();
void on_Rulesbutton_clicked();
void on_Exitbutton_clicked();
void on_LoadLastGame_clicked();
private:
Ui::mainmenu *ui;
};
#endif // MAINMENU_H
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment