realityplayground-of/zoneb2/src/main.cpp
2020-10-18 18:12:23 +02:00

11 lines
179 B
C++

#include "ofApp.h"
int main()
{
ofGLFWWindowSettings settings;
settings.setGLVersion(3, 2);
settings.setSize(1280, 720);
ofCreateWindow(settings);
ofRunApp(new ofApp());
}