Package pong.client.view

Examples of pong.client.view.ClientView


   * @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.view.ClientView

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.