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

https://github.com/okelleydevelopment/pong

A small proof of concept for Pong built using the ncurses library
https://github.com/okelleydevelopment/pong

Last synced: 12 months ago
JSON representation

A small proof of concept for Pong built using the ncurses library

Awesome Lists containing this project

README

          

# Pong

## Motivation

A refresher on C++ syntax and programming while utilizing a new graphics library
to build a simple game of Pong.

## Prerequisites

Have the GCC installed

## Program Compilation and Execution

1. To compile:

```sh
g++ main.cpp src/*.cpp -lncurses -o Pong
```

2. To Execute:

```sh
./Pong
```

3. Move the left paddle with WASD and the right with the arrow keys.
4. To quit press `q`

## Known Bugs

- No game logic yet
- arrow keys are not implemented yet

## Future Goals

- [] Implement arrow key functionality
- [] Add in the game logic