blob: fc3ded398acb8576ea4adbbab92c530d7ef7bb8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
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());
}
|