summaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index fc7cf9d..22e9fca 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,8 +1,12 @@
+#include "ogrewidget.h"
#include <QtGui/QApplication>
int main(int argc, char **argv)
{
QApplication app(argc, argv);
+ OgreWidget w;
+ w.show();
+
return app.exec();
}