From 3e555cca19ae03d04868d585f92611a734ce8e37 Mon Sep 17 00:00:00 2001 From: Chris Kiefer Date: Tue, 30 Oct 2012 16:49:35 +0000 Subject: VS2010 OF0072 Example Project --- ofxMaxim/ofxMaximExampleVS2010-OF0072/src/main.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ofxMaxim/ofxMaximExampleVS2010-OF0072/src/main.cpp (limited to 'ofxMaxim/ofxMaximExampleVS2010-OF0072/src/main.cpp') 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 +} -- cgit v1.3