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
- Host: GitHub
- URL: https://github.com/okelleydevelopment/pong
- Owner: OkelleyDevelopment
- Created: 2021-01-18T06:31:53.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-18T06:49:26.000Z (over 5 years ago)
- Last Synced: 2025-01-16T23:06:56.192Z (over 1 year ago)
- Language: C++
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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