Simple Pong game using Raylib
This is my first game finished with C++ language and Raylib library , is cool when you can finish a project, even small project like this. begin is easy but finishe is other thing.
My game has one main windows, Board.
- You need to have raylib installed on your system
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
bootstrap-vcpkg.bat
vcpkg integrate install
vcpkg install raylib
- Follow https://github.com/raysan5/raylib/wiki/Working-on-Windows to setup the build system using Visual Studio
git clone https://github.com/AliElsheeikh/pong.git
How to play?
Player | Keys | Moviment |
---|---|---|
Left | W | Up |
Left | S | Down |
Right | ↑ | Up |
Right | ↓ | Down |
There's also action keys!
Key | Action |
---|---|
ESC | Exit game |
Backspace | start game |