diff options
Diffstat (limited to 'ofxHelios/example-squares/src/main.cpp')
| -rw-r--r-- | ofxHelios/example-squares/src/main.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ofxHelios/example-squares/src/main.cpp b/ofxHelios/example-squares/src/main.cpp new file mode 100644 index 0000000..fc3ded3 --- /dev/null +++ b/ofxHelios/example-squares/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()); + +} |
