https://github.com/shresht7/pong
Pong game implemented in C, rendered directly in the terminal
https://github.com/shresht7/pong
Last synced: 9 months ago
JSON representation
Pong game implemented in C, rendered directly in the terminal
- Host: GitHub
- URL: https://github.com/shresht7/pong
- Owner: Shresht7
- License: mit
- Created: 2025-06-30T19:27:07.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-01T11:30:31.000Z (12 months ago)
- Last Synced: 2025-07-01T12:29:51.538Z (12 months ago)
- Language: C
- Homepage:
- Size: 176 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pong
Pong game implemented in C, rendered directly in the terminal.

## Prerequisites
To build and run this project, you will need:
- A C compiler (e.g., GCC, MinGW for Windows)
- CMake (version 3.10 or higher)
## Building the Project
Follow these steps to build the project:
1. Navigate to the project root directory in your terminal:
2. Create a `build` directory and generate the build files using CMake. This command will also compile the project:
```bash
mkdir build
cd build
cmake ..
cmake --build .
```
## License
This project is licensed under the [MIT License](./LICENSE)