1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 12:54:00 +00:00
OpenMW/apps/launcher/playpage.hpp
Pieter van der Kloet c17eed26f3 Removed whitespace
2011-04-28 21:55:06 +02:00

20 lines
273 B
C++

#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