* the game window
* @param game
* the pong object calling this initializer
*/
public ServerController(final JFrame window, final Pong game) {
this.view = new ServerView(this, window);
this.view.drawOptionsPanel();
this.model = null;
this.game = game;
}