#include "ofMain.h" #include "ofApp.h" int main(int argc, char *argv[]){ ofGLFWWindowSettings settings; settings.decorated = true; settings.setSize(800,600); settings.setPosition(ofVec2f(100,100)); settings.resizable = false; shared_ptr mainWindow = ofCreateWindow(settings); mainWindow->setVerticalSync(false); shared_ptr mainApp(new ofApp); ofRunApp(mainWindow, mainApp); ofRunMainLoop(); }