view src/main.cpp @ 8:584ef20184f6

FIX: segv when too many users present - added test on user id; increased MAX_USERS to 16; changed window title to 'Melody Triangle Tracker'; ADDED: full screen option (key 'F'); ADDED: /randinit message between /birth and /start
author samer
date Wed, 15 Feb 2012 10:55:40 +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));
}