I\'m trying to create a Pacman game in Java, and so far I\'ve displayed the background image (the blue and black maze), but I\'m having trouble showing the image of Pacman. When
You're adding pacman before you add the background, so it is drawing over the pacman sprite and you are not seeing it. Make sure you draw your items in the game in reverse order, so draw the background first, then pacman.