if (e instanceof NewGameEvent){
NewGameEvent newGame = (NewGameEvent) e;
switch (newGame.getStartupEventType()) {
case SINGELPLAYER:{
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);