12 lines
179 B
C++
12 lines
179 B
C++
|
#include "ofApp.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
ofGLFWWindowSettings settings;
|
||
|
settings.setGLVersion(3, 2);
|
||
|
settings.setSize(1280, 720);
|
||
|
ofCreateWindow(settings);
|
||
|
|
||
|
ofRunApp(new ofApp());
|
||
|
}
|