The Breakout Ball Game is a classic arcade game implemented in Java where players control a paddle to bounce a ball and break bricks. It's a fun and challenging game that tests your reflexes and coordination.
- Intuitive controls: Use the left and right arrow keys to move the paddle.
- Ball mechanics: The ball bounces off the paddle and walls, breaking bricks it comes in contact with.
- Power-ups: Collect power-ups that fall from broken bricks to enhance gameplay.
- Levels: The game consists of multiple levels with increasing difficulty.
- Clone the repository:
git clone https://github.com/your-username/breakout-ball-game.git
- Navigate to the project directory:
cd breakout-ball-game
- Compile the game:
javac BreakoutGame.java
- Run the game:
java BreakoutGame
- Left Arrow Key: Move the paddle to the left.
- Right Arrow Key: Move the paddle to the right.
- Spacebar: Launch the ball at the start of a level or after losing a life.
- Esc Key: Pause the game.
- This game was inspired by the classic Breakout arcade game.