* the frame where the game will be played
* @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;
}