Commit 85ca6044 by grlabu

Upload New File

parent 6afa64de
Showing with 27 additions and 0 deletions
#ifndef GAMEOVERSCREEN_H
#define GAMEOVERSCREEN_H
#include <QMainWindow>
#include "mainmenu.h" // Include mainmenu header for navigation
namespace Ui {
class gameoverscreen;
}
class gameoverscreen : public QMainWindow
{
Q_OBJECT
public:
explicit gameoverscreen(QWidget *parent = nullptr);
~gameoverscreen();
private slots:
void on_restartGame_clicked();
private:
Ui::gameoverscreen *ui;
};
#endif // GAMEOVERSCREEN_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