blob: 6136697da86b7416a3e4c82c4dcade81da4e3af8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "ofMain.h"
#include "ofApp.h"
//========================================================================
int main( ){
ofGLWindowSettings settings;
settings.setGLVersion(3,2);
ofCreateWindow(settings);
// this kicks off the running of my app
// can be OF_WINDOW or OF_FULLSCREEN
// pass in width and height too:
ofRunApp(new ofApp());
}
|