You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
343 B
14 lines
343 B
#include "ofMain.h"
|
|
#include "ofApp.h"
|
|
|
|
//========================================================================
|
|
int main( ){
|
|
|
|
ofSetupOpenGL(640,480, 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 ofApp());
|
|
|
|
}
|
|
|