mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-05-31 03:31:32 +00:00
23 lines
283 B
C++
23 lines
283 B
C++
#ifndef WCREATETAB_H
|
|
#define WCREATETAB_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class WCreateTab;
|
|
}
|
|
|
|
class WCreateTab : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit WCreateTab(QWidget *parent = 0);
|
|
~WCreateTab();
|
|
|
|
private:
|
|
Ui::WCreateTab *ui;
|
|
};
|
|
|
|
#endif // WCREATETAB_H
|