summaryrefslogtreecommitdiff
path: root/warper/src/main.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@getdrop.com>2018-02-02 01:47:51 +0000
committerTim Redfern <tim@getdrop.com>2018-02-02 01:47:51 +0000
commit7c50a03c5857310aa383b1ba89a18792c96724b1 (patch)
tree97727831c97af5c06b39064dfdba60d61f7c7ae3 /warper/src/main.cpp
parent2b6c19dd192b07fe5980f667e26015da51c3106d (diff)
lots
Diffstat (limited to 'warper/src/main.cpp')
-rw-r--r--warper/src/main.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/warper/src/main.cpp b/warper/src/main.cpp
new file mode 100644
index 0000000..b562734
--- /dev/null
+++ b/warper/src/main.cpp
@@ -0,0 +1,14 @@
+#include "ofMain.h"
+#include "ofApp.h"
+
+//========================================================================
+int main()
+{
+ ofGLFWWindowSettings settings;
+ settings.setGLVersion(3, 2);
+ settings.width = 1280;
+ settings.height = 720;
+ ofCreateWindow(settings);
+
+ ofRunApp(new ofApp());
+}