diff options
| author | Chris Kiefer <chrisk13fer@gmail.com> | 2012-10-30 16:49:35 +0000 |
|---|---|---|
| committer | Chris Kiefer <chrisk13fer@gmail.com> | 2012-10-30 16:49:35 +0000 |
| commit | 3e555cca19ae03d04868d585f92611a734ce8e37 (patch) | |
| tree | 1280e36880a26d4099645fdc3e1463a40a6ec530 /ofxMaxim/ofxMaximExampleVS2010-OF0072/src/main.cpp | |
| parent | df586b8a5fa124e630057efa609aac7389581acc (diff) | |
VS2010 OF0072 Example Project
Diffstat (limited to 'ofxMaxim/ofxMaximExampleVS2010-OF0072/src/main.cpp')
| -rw-r--r-- | ofxMaxim/ofxMaximExampleVS2010-OF0072/src/main.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ofxMaxim/ofxMaximExampleVS2010-OF0072/src/main.cpp b/ofxMaxim/ofxMaximExampleVS2010-OF0072/src/main.cpp new file mode 100644 index 0000000..872a5b5 --- /dev/null +++ b/ofxMaxim/ofxMaximExampleVS2010-OF0072/src/main.cpp @@ -0,0 +1,10 @@ +#include "testApp.h" +#include "ofAppGlutWindow.h" + +//-------------------------------------------------------------- +int main(){ + ofAppGlutWindow window; // create a window + // set width, height, mode (OF_WINDOW or OF_FULLSCREEN) + ofSetupOpenGL(&window, 1024, 768, OF_WINDOW); + ofRunApp(new testApp()); // start the app +} |
