Guest User

Untitled

a guest
Jun 14th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. private MonsterHeuristic[] monsterheuristicmethode() {
  2.  
  3. List<Position > monsterliste =
  4. (List<Position>) world.getMonsterSpawnPoints();
  5. MonsterHeuristic[] tmp = new MonsterHeuristic[monsterliste.size()];
  6. for (int i = 0; i < tmp.length; i++) {
  7. tmp[i] = factory.createHeuristic();
  8. tmp[i].setWorld(world);
  9. }
  10. return tmp;
  11.  
  12. }
Add Comment
Please, Sign In to add comment