summaryrefslogtreecommitdiff
path: root/nditest/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'nditest/src/main.cpp')
-rw-r--r--nditest/src/main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/nditest/src/main.cpp b/nditest/src/main.cpp
new file mode 100644
index 0000000..1589978
--- /dev/null
+++ b/nditest/src/main.cpp
@@ -0,0 +1,13 @@
+#include "ofMain.h"
+#include "ofApp.h"
+
+//========================================================================
+int main()
+{
+ ofGLFWWindowSettings settings;
+ settings.width = 1280;
+ settings.height = 720;
+ ofCreateWindow(settings);
+
+ ofRunApp(new ofApp());
+}