Java Pang Game with GUI, Sound Effects, and Login System.
- GUI Interface (Java Swing)
- Sound Effects (WAV files)
- User Login & Registration System
- Score saving system
- Move the player left and right.
- Shoot arrows to pop bubbles.
- User registration and login system (users.txt).
- Multiple backgrounds and heart icons for lives.
- Sound effects for win, shoot, and pop events.
- Open the project in Eclipse or IntelliJ IDEA.
- Make sure the images and sound files are in the project directory.
- Run the
Main.javafile.
PangGame/ ├── src/ │ └── game/ │ ├── GameFrame.java │ ├── GamePanel.java │ ├── Player.java │ ├── Ball.java │ ├── Bullet.java │ ├── User.java │ ├── UserManager.java │ └── Utils.java ├── users.txt ├── background1.png ├── background2.png ├── background3.png ├── background4.png ├── heart_empty.png ├── heart_full.png ├── login_bg.png ├── pop.wav ├── shoot.wav ├── win.wav
markdown Copy Edit
- Lina Şahin