mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 16:49:55 +00:00
20 lines
No EOL
273 B
C++
20 lines
No EOL
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 |