view src/main.cpp @ 2:c265c6b3b98d

Added bin/data/
author samer
date Thu, 09 Feb 2012 17:27:14 +0000
parents 2aa8ba4db20e
children
line wrap: on
line source
#include "ofMain.h"
#include "testApp.h"

#define HOST "localhost"
#define PORT 7770

//========================================================================
int main(int argc, const char **argv){
	ofRunApp(new testApp(
	   argc>1 ? argv[1] : HOST, 
	   argc>2 ? atoi(argv[2]) : PORT,
	   argc>3 ? atoi(argv[3]) : 15));
}