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