Guest User

Untitled

a guest
Jun 14th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. public static void main(String[] args) {
  2. World temp = World.loadFromFile("D:/datei.txt");
  3. MonsterHeuristicFactory monsters =
  4. MonsterHeuristicFactory.createFactory();
  5. PacMan asdf = new PacMan(temp, monsters);
  6. asdf.zahlemaxnahrung();
  7. asdf.nextStep(Direction.EAST);
  8. asdf.nextStep(Direction.EAST);
  9.  
  10. PacManGame.startGame(temp);
  11. }
  12. }
Add Comment
Please, Sign In to add comment