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