1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-04 21:40:03 +00:00
OpenMW/apps/launcher/playpage.hpp

20 lines
273 B
C++
Raw Normal View History

2011-04-08 00:04:09 +02:00
#ifndef PLAYPAGE_H
#define PLAYPAGE_H
#include <QWidget>
class QComboBox;
class QStringListModel;
class PlayPage : public QWidget
{
Q_OBJECT
public:
PlayPage(QWidget *parent = 0);
2011-04-24 21:42:56 +02:00
2011-04-08 00:04:09 +02:00
QComboBox *mProfileComboBox;
QStringListModel *mProfileModel;
2011-04-24 21:42:56 +02:00
};
2011-04-08 00:04:09 +02:00
#endif