summaryrefslogtreecommitdiff
path: root/ofxHelios/example-circles/src/main.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@getdrop.com>2018-01-30 00:35:30 +0000
committerTim Redfern <tim@getdrop.com>2018-01-30 00:35:30 +0000
commitd60cc2aa2994f9e63d9570bea4fac8b8a9949b43 (patch)
treebc333e74981e1a4bdae2bdc5faf31655033f653f /ofxHelios/example-circles/src/main.cpp
parent512d5703e4e1affc1dc5dcd9f2892ac5944c666f (diff)
much progress
Diffstat (limited to 'ofxHelios/example-circles/src/main.cpp')
-rw-r--r--ofxHelios/example-circles/src/main.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/ofxHelios/example-circles/src/main.cpp b/ofxHelios/example-circles/src/main.cpp
new file mode 100644
index 0000000..fc3ded3
--- /dev/null
+++ b/ofxHelios/example-circles/src/main.cpp
@@ -0,0 +1,12 @@
+#include "ofMain.h"
+#include "ofApp.h"
+
+//========================================================================
+int main( ){
+ ofSetupOpenGL(1024,1024,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 testApp());
+
+}