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