realityplayground-of/zoneb/src/main.cpp

12 lines
179 B
C++
Raw Normal View History

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