You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/tdefifteen/src/mainwindow.h

31 lines
457 B

// Author: Denis Kozadaev - (c) 2017-2020
#ifndef __MAIN_WINDOW_H__
#define __MAIN_WINDOW_H__
#include <tdemainwindow.h>
#include <tdepopupmenu.h>
#include "gameboard.h"
class MainWindow : public TDEMainWindow
{
TQ_OBJECT
public:
MainWindow(TQWidget* parent = 0, const char* name = 0);
~MainWindow();
private:
TDEPopupMenu* mMenu;
GameBoard* mBoard;
private slots:
void newGame();
void loadImage();
};
#endif /* __MAIN_WINDOW_H__ */