pacman.test.GameViewLocationTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pacman-main Show documentation
Show all versions of pacman-main Show documentation
The main code for Ms. Pac-Man Vs Ghosts
package pacman.test;
import pacman.game.Game;
import pacman.game.GameView;
import java.awt.*;
/**
* Created by Piers on 17/09/2016.
*/
public class GameViewLocationTest {
public static void main(String[] args) {
Game game = new Game(0);
GameView view = new GameView(game);
view.setDesiredLocation(new Point(100, 100));
view.showGame();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy