Newer
Older
Import / applications / voxels / main.cpp
@John John on 29 Dec 2020 228 bytes bulk import from macbookpro checkouts
#include <QApplication>
#include "modeleditor.h"


int main( int argc, char *argv[] )
{
    QApplication a(argc, argv);

    ModelEditor *w = new ModelEditor(0);
    a.setMainWidget( w );
    w->show();

    return a.exec();
}