Skip to content
Permalink
83cc2c6d7d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
16 lines (13 sloc) 356 Bytes
#include "ofMain.h"
#include "ofApp.h"
//========================================================================
int main()
{
ofGLWindowSettings settings;
settings.setGLVersion(3, 2);
ofCreateWindow(settings);
// this kicks off the running of my app
// can be OF_WINDOW or OF_FULLSCREEN
// pass in width and height too:
ofRunApp(new ofApp());
}