All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pacman.test.GameViewLocationTest Maven / Gradle / Ivy

There is a newer version: 2.0.1.0
Show newest version
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