1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 19:19:55 +00:00
openmw-tes3mp/apps/launcher/playpage.hpp

21 lines
263 B
C++
Raw Normal View History

2011-04-07 22:04:09 +00:00
#ifndef PLAYPAGE_H
#define PLAYPAGE_H
#include <QWidget>
class QComboBox;
class QPushButton;
2011-04-07 22:04:09 +00:00
class PlayPage : public QWidget
{
Q_OBJECT
public:
PlayPage(QWidget *parent = 0);
2011-04-24 19:42:56 +00:00
QComboBox *mProfilesComboBox;
QPushButton *mPlayButton;
2011-04-24 19:42:56 +00:00
};
2011-04-07 22:04:09 +00:00
#endif