#include "ofMain.h"
#include "testApp.h"

//========================================================================
int main( ){

	// can be OF_WINDOW or OF_FULLSCREEN
	// pass in width and height too:
	ofSetupOpenGL(640,480, OF_WINDOW);			// <-------- setup the GL context
	
	ofBackground( 30, 30, 130 );
	
	// this is my "app" :
	testApp APP;
	
	// this kicks off the running of my app
	ofRunApp(&APP);
	
}

