|
|
@ -1,12 +1,12 @@ |
|
|
|
import BattleShip.BShip; |
|
|
|
import PingPong.GamePanel; |
|
|
|
import PingPong.*; |
|
|
|
|
|
|
|
|
|
|
|
import javax.swing.*; |
|
|
|
import java.awt.*; |
|
|
|
import java.awt.event.KeyAdapter; |
|
|
|
import java.awt.event.KeyEvent; |
|
|
|
import java.awt.event.KeyListener; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class MenuPanel extends JPanel { |
|
|
@ -27,7 +27,10 @@ public class MenuPanel extends JPanel { |
|
|
|
g.setFont(new Font("Consolas", Font.BOLD, 70)); |
|
|
|
g.drawString("GAME MENU", 330, 100); |
|
|
|
g.setFont(new Font("Consolas", Font.BOLD, 30)); |
|
|
|
g.drawString("Press 'ENTER' to start the game", 265, 200); |
|
|
|
g.drawString("Press 1 to start Pong Game", 265, 200); |
|
|
|
g.drawString("Press 2 to start BattleShip", 265, 250); |
|
|
|
g.drawString("Press 3 to start Snake Game", 265, 300); |
|
|
|
|
|
|
|
g.setFont(new Font("Consolas", Font.PLAIN, 10)); |
|
|
|
g.drawString("Created by HellsGamers", 450, 450); |
|
|
|
|
|
|
|