This is a prototype for a Data Definition, Declaration, and Management tool intended for game development. C++ and QT, will support C++ Plugins to extend functionality, and will have Python support for scripting over data.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
305 B

#ifndef LAYOUTWIDGET_H
#define LAYOUTWIDGET_H
#include <QTabWidget>
namespace Ui {
class LayoutWidget;
}
class LayoutWidget : public QTabWidget
{
Q_OBJECT
public:
explicit LayoutWidget(QWidget *parent = 0);
~LayoutWidget();
private:
Ui::LayoutWidget *ui;
};
#endif // LAYOUTWIDGET_H