summaryrefslogtreecommitdiff
path: root/warper/src/main.cpp
blob: b5627349f420c42382d0d816d82aba3fdf341a5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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());
}