diff options
Diffstat (limited to 'warper/src/main.cpp')
| -rw-r--r-- | warper/src/main.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/warper/src/main.cpp b/warper/src/main.cpp new file mode 100644 index 0000000..b562734 --- /dev/null +++ b/warper/src/main.cpp @@ -0,0 +1,14 @@ +#include "ofMain.h" +#include "ofApp.h" + +//======================================================================== +int main() +{ + ofGLFWWindowSettings settings; + settings.setGLVersion(3, 2); + settings.width = 1280; + settings.height = 720; + ofCreateWindow(settings); + + ofRunApp(new ofApp()); +} |
