This is a remake of the classic Pong game, implemented in C++ using the raylib library. In this version, you play against a computer-controlled opponent, trying to bounce the ball past the paddle controlled by the computer to score points.
- Single-player Pong gameplay against a computer-controlled opponent.
- Simple keyboard controls.
- Scoring to keep track of your progress.
Before running the game, you need to have raylib installed on your system. Follow the installation instructions on the official raylib page.
- Clone this repository to your system.
git clone https://github.com/Nyfeu/Pong.git
- Navigate to the project directory.
- Use GNU make to compile the game.
make
- Run the game
make run
- Player (You): KEY_UP (up), KEY_DOWN (down).
- Press ESC or close the window to exit the game.
This project was inspired by Nick's programming tutorial, available on: Youtube Video. Nick's video was a valuable source of knowledge and inspiration for creating this Pong game in C++.