summaryrefslogtreecommitdiff
path: root/drawing/src/main.cpp
blob: 0d7049c98d1bd2162373d8787174196209b1cc97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "ofMain.h"
#include "ofApp.h"


//========================================================================
int main(int argc, char *argv[]){


	ofGLFWWindowSettings settings;


	settings.width = 800;
	settings.height = 800;

	shared_ptr<ofAppBaseWindow> mainWindow = ofCreateWindow(settings);

	shared_ptr<ofApp> mainApp(new ofApp);
	
	ofRunApp(mainWindow, mainApp);
	ofRunMainLoop();
}