Browse Source

[SnakeGame Class]: hinzufügen des Panels 5

remotes/origin/SnakeGame
fdai7551 2 years ago
parent
commit
f750f25043
  1. 8
      JavaGamelauncher/src/main/java/de/hs_fulda/gruppenprojekt/JavaGamelauncher/SnakeGame.java

8
JavaGamelauncher/src/main/java/de/hs_fulda/gruppenprojekt/JavaGamelauncher/SnakeGame.java

@ -40,6 +40,7 @@ public class SnakeGame extends JFrame {
public JPanel panel2; public JPanel panel2;
public JPanel panel3; public JPanel panel3;
public JPanel panel4; public JPanel panel4;
public JPanel panel5;
public int breite = 1200; public int breite = 1200;
public int hoehe = 600; public int hoehe = 600;
@ -97,6 +98,13 @@ public class SnakeGame extends JFrame {
panel4.setBackground(Color.BLACK); panel4.setBackground(Color.BLACK);
cP.add(panel4); cP.add(panel4);
panel5 = new JPanel();
panel5.setBounds(700, 0, 100, 100);
panel5.setVisible(true);
panel5.setBackground(Color.BLACK);
cP.add(panel5);
} }
public JPanel getPanel1() { public JPanel getPanel1() {

Loading…
Cancel
Save