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.
17 lines
432 B
17 lines
432 B
#include "ofMain.h"
|
|
#include "ofApp.h"
|
|
|
|
//========================================================================
|
|
int main( ){
|
|
|
|
//Use ofGLFWWindowSettings for more options like multi-monitor fullscreen
|
|
ofGLWindowSettings settings;
|
|
settings.setSize(1920, 1080);
|
|
settings.windowMode = OF_WINDOW; //can also be OF_FULLSCREEN
|
|
|
|
auto window = ofCreateWindow(settings);
|
|
|
|
ofRunApp(window, make_shared<ofApp>());
|
|
ofRunMainLoop();
|
|
|
|
}
|
|
|