mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
19 lines
228 B
C++
19 lines
228 B
C++
|
#ifndef CSV_DOC_NEWGAME_H
|
||
|
#define CSV_DOC_NEWGAME_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
namespace CSVDoc
|
||
|
{
|
||
|
class NewGameDialogue : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
|
||
|
NewGameDialogue();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|