323334353637383940
* @param game * the Pong object calling the constructor */ public ClientController(final JFrame window, final Pong game) { this.model = new ClientModel(window); this.view = new ClientView(this, window); this.view.start(); this.game = game; }