use of org.javatari.atari.network.ClientConsole in project javatari by ppeccin.
the class Room method buildAndPlugClientConsole.
protected ClientConsole buildAndPlugClientConsole() {
RemoteReceiver remoteReceiver = new RemoteReceiver();
clientConsole = new ClientConsole(remoteReceiver);
plugConsole(clientConsole);
return clientConsole;
}
Aggregations