view src/main.cpp @ 9:5df9f17ee5b9

Moved binary archive to release and included necessary openni libraries.
author samer
date Wed, 15 Feb 2012 11:01:18 +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));
}