Ajout du Makefile

This commit is contained in:
2023-04-27 22:28:07 +02:00
parent 4f326ef2d1
commit bb6afe1c3e
3 changed files with 35 additions and 2 deletions

View File

@@ -118,6 +118,6 @@ public class HomeView extends JPanel {
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
g.drawImage(new ImageIcon("background.jpg").getImage(), 0, 0, getWidth(), getHeight(), null);
g.drawImage(new ImageIcon("./src/background.jpg").getImage(), 0, 0, getWidth(), getHeight(), null);
}
}