goat3d

diff goatview/src/main.cc @ 72:36e39632db75

- fixed exporter animation bounds calculation - fixed missing scene name in exported meshes - rewritting goatview as a full GUI app with Qt
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 06 May 2014 03:31:35 +0300
parents
children 9862541fdcf5
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/goatview/src/main.cc	Tue May 06 03:31:35 2014 +0300
     1.3 @@ -0,0 +1,12 @@
     1.4 +#include <QtWidgets/QtWidgets>
     1.5 +#include "goatview.h"
     1.6 +
     1.7 +int main(int argc, char **argv)
     1.8 +{
     1.9 +	QApplication app(argc, argv);
    1.10 +
    1.11 +	GoatView gview;
    1.12 +	gview.show();
    1.13 +
    1.14 +	return app.exec();
    1.15 +}
    1.16 \ No newline at end of file