Logo vom frame auf pacman bild geändert
parent
f7ed737e23
commit
b909505fb1
BIN
bin/Game.class
BIN
bin/Game.class
Binary file not shown.
BIN
bin/Ghost.class
BIN
bin/Ghost.class
Binary file not shown.
|
@ -1,6 +1,7 @@
|
||||||
import java.awt.Color;
|
import java.awt.Color;
|
||||||
import java.awt.Font;
|
import java.awt.Font;
|
||||||
|
|
||||||
|
import javax.swing.ImageIcon;
|
||||||
import javax.swing.JFrame;
|
import javax.swing.JFrame;
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
|
@ -49,6 +50,9 @@ public class Game {
|
||||||
// aufgerufen wird?)
|
// aufgerufen wird?)
|
||||||
|
|
||||||
frame = new JFrame(); // Fenster
|
frame = new JFrame(); // Fenster
|
||||||
|
ImageIcon img = new ImageIcon("assets/Pacman_Right.png");
|
||||||
|
frame.setIconImage(img.getImage());
|
||||||
|
|
||||||
|
|
||||||
panel = new JPanel(); // darauf werden alle sichtbaren Elemente gespeichert
|
panel = new JPanel(); // darauf werden alle sichtbaren Elemente gespeichert
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue