This is a simple implementation of the classic Ping Pong game using the C programming language and the Raylib library. It's a beginner-friendly project aimed at helping you understand basic game development concepts in C.
Before running the game, make sure you have the following installed:
- Linux distro
- C compiler (gcc recommended)
- Raylib library
To run the Ping Pong game, follow these steps:
Clone this repository:
git clone https://github.com/IdanKoblik/ping-pong.git
Navigate to the project directory:
cd ping-pong
Compile the source code using the provided Makefile:
make
Run the compiled executable:
./ping-pong_game
Use W key to move up and S key to move down.