Created
November 27, 2012 07:42
-
-
Save bakercp/4152988 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "ofMain.h" | |
#include "testApp.h" | |
//======================================================================== | |
int main( ){ | |
ofSetupOpenGL(1024,768, OF_WINDOW); // <-------- setup the GL context | |
// this kicks off the running of my app | |
// can be OF_WINDOW or OF_FULLSCREEN | |
// pass in width and height too: | |
ofRunApp( new testApp()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
include "ofMain.h"
include "testApp.h"
//========================================================================
int main( ){
}