Advertisement
Guest User

Upload Image BattleBots

a guest
Nov 17th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public String[] imageNames()
  2. {
  3. String[] images = {"roomba_up.png","roomba_down.png","roomba_left.png","roomba_right.png"};
  4. return images;
  5. }
  6.  
  7. /**
  8. * Store the loaded images
  9. */
  10. public void loadedImages(Image[] images)
  11. {
  12. if (images != null)
  13. {
  14. current = up = images[0];
  15. down = images[1];
  16. left = images[2];
  17. right = images[3];
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement