summaryrefslogtreecommitdiff
path: root/le_new/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'le_new/src/main.cpp')
-rw-r--r--le_new/src/main.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/le_new/src/main.cpp b/le_new/src/main.cpp
new file mode 100644
index 0000000..fde3a48
--- /dev/null
+++ b/le_new/src/main.cpp
@@ -0,0 +1,17 @@
+#include "ofMain.h"
+#include "testApp.h"
+#include "ofxFensterManager.h"
+#include "ofAppGlutWindow.h"
+
+//========================================================================
+int main( ){
+
+ //ofxFensterManager::setup(4080,768,OF_WINDOW);
+ ofxFensterManager::setup(1440,270,OF_WINDOW);
+
+ // this kicks off the running of my app
+ // can be OF_WINDOW or OF_FULLSCREEN
+ // pass in width and height too:
+ ofRunApp(new ofApp());
+
+}