14 lines
177 B
C
14 lines
177 B
C
|
#pragma once
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QVBoxLayout>
|
||
|
|
||
|
class WorldSettings : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
WorldSettings();
|
||
|
|
||
|
private:
|
||
|
QVBoxLayout* m_layout;
|
||
|
};
|