1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-03 17:37:18 +00:00
OpenMW/apps/launcher/playpage.hpp

20 lines
278 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 QStringListModel;
class PlayPage : public QWidget
{
Q_OBJECT
public:
PlayPage(QWidget *parent = 0);
QComboBox *mProfileComboBox;
QStringListModel *mProfileModel;
};
#endif