I imported:
import javax.swing.ImageIcon;
and I used this code to import the PNG file. (i know i can create a black square easily, but it is the importing any image to my game that i want).
Image player1 = Toolkit.getDefaultToolkit().createImage("Users/Documents/JavaGameImages/Tag/BlackSquare.png");
I tried to call this image later down, but the image did not appear in the window. (assume myX = 100 and myY = 100)
public void paint(Graphics g) {
g.setColor(BackgroundColor);
g.fillRect(WindowWidth, WindowHeight, 1000, 1000);
/////////////////////// The code below is where i am having trouble:
g.drawImage(player1, myX, myY, null);