view src/main.cpp @ 10:3d20dedfd1da

Added Makefile for pack/unpack binary release.
author samer
date Wed, 15 Feb 2012 12:21:29 +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));
}