if (eventNotice instanceof IPlayer){
client = new Client((IPlayer) eventNotice);
view.setClient(client);
} else if (eventNotice instanceof IGame){
// notify server
OpenPatricianServer server = new OpenPatricianServer((IGame) eventNotice);
server.startStandaloneGame(this);
} else {
throw new IllegalArgumentException("Unknown notice: "+eventNotice);
}
break;
}