#include "ofMain.h" #include "ofApp.h" //======================================================================== int main(int argc, char *argv[]){ ofGLFWWindowSettings settings; settings.width = 1200; settings.height = 900; shared_ptr mainWindow = ofCreateWindow(settings); shared_ptr mainApp(new ofApp); ofRunApp(mainWindow, mainApp); ofRunMainLoop(); }