diff options
| author | Tim Redfern <tim@getdrop.com> | 2022-10-09 12:51:01 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2022-10-09 12:51:01 +0100 |
| commit | c75c17685a646e90d772c2d6ea4de7c2d0d250b6 (patch) | |
| tree | b6c8b0add8651f5d89ff614e647544faf25c9d80 /pluginchooser/src/main.cpp | |
| parent | 33a8310b5d5e51c6262d63a8b6679dd129abecc0 (diff) | |
new plugin chooser
Diffstat (limited to 'pluginchooser/src/main.cpp')
| -rw-r--r-- | pluginchooser/src/main.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pluginchooser/src/main.cpp b/pluginchooser/src/main.cpp new file mode 100644 index 0000000..d9d6188 --- /dev/null +++ b/pluginchooser/src/main.cpp @@ -0,0 +1,19 @@ +#include "ofMain.h" +#include "ofApp.h" + +int main(int argc, char *argv[]){ + ofGLFWWindowSettings settings; + settings.decorated = true; + settings.setSize(400,400); + settings.setPosition(ofVec2f(100,100)); + settings.resizable = false; + + shared_ptr<ofAppBaseWindow> mainWindow = ofCreateWindow(settings); + mainWindow->setVerticalSync(false); + + shared_ptr<ofApp> mainApp(new ofApp); + + ofRunApp(mainWindow, mainApp); + ofRunMainLoop(); +} +
\ No newline at end of file |
