FaultInOurPong  1
PongGame.java File Reference

This class starts the game. More...

Classes

class  startGame.PongGame
 

Packages

package  startGame
 

Detailed Description

This class starts the game.

PongGame

Author
Pongthusiastics
Date
13/11/2016

This class instantiates a model, view, and controller using the MVC model, and starts the game.

GameView view = new GameView();
GameModel model = new GameModel();
GameController controller = new GameController(view, model);
controller.display();