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();