Package ponkOut.logic

Examples of ponkOut.logic.WallBall


import ponkOut.logic.WallBall;
import ponkOut.logic.WallPaddle;

public class Map {
  public Map(GraphicsObjectsManager goManager) {
    new WallBall(WallBall.Place.TOP_LEFT, goManager);
    new WallBall(WallBall.Place.TOP_RIGHT, goManager);
    new WallBall(WallBall.Place.BOTTOM_LEFT, goManager);
    new WallBall(WallBall.Place.BOTTOM_RIGHT, goManager);

    new WallPaddle(Paddle.Place.RIGHT, goManager);
    new WallPaddle(Paddle.Place.TOP, goManager);

    PlayerPaddle p1 = new PlayerPaddle(0, Paddle.Place.BOTTOM, goManager);
View Full Code Here

TOP

Related Classes of ponkOut.logic.WallBall

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.