Package pong.client.model

Examples of pong.client.model.ClientModel


   *            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;
  }
View Full Code Here

TOP

Related Classes of pong.client.model.ClientModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.