Package pong.server.view

Examples of pong.server.view.ServerView


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

TOP

Related Classes of pong.server.view.ServerView

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.