An open API service indexing awesome lists of open source software.

https://github.com/macasteglione/pong-c-

The Pong game made with c++
https://github.com/macasteglione/pong-c-

classic classicgames cpp pong pong-clone pong-game raylib raylib-cpp videogames

Last synced: 3 months ago
JSON representation

The Pong game made with c++

Awesome Lists containing this project

README

        

# Pong!
This is a C++ version of the classic Pong game, created with Raylib and CMake for the build. Here is a simple illustration I've made while learning C++. I hope you had fun!
![screenshot](assets/img/screenshot.png)

## Build
It is a Make project, so it builds very simply. Open a terminal inside this folder:
```shell
make windows
```
Or for Linux:
```shell
make linux
```

## Run
* On macOS, you get a bundle that you can simply open.
* On Windows/Linux, you get an executable that you can simply run.

## How to play
"W" and "S" are the controls for the first player. The controls for player two are "I" for up and "K" for down. To pause and resume the game, press "P", to quit press "Esc".

## Embedded Project
* [raylib](https://github.com/raysan5/raylib)