mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-04-25 06:49:40 +00:00
[PR #1475] Add Pong Game in C to /games #2078
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/TheAlgorithms/C/pull/1475
State: closed
Merged: No
Description of Change
Added a simple Pong game implemented in C using the Raylib graphics library.
The game is placed in the
/games/pong/directory and includes:Makefile(macOS, Linux, Windows)README.mdwith build stepsmain.c)References
N/A
Checklist
Notes:
This game demonstrates practical use of C in graphics, event handling, and game loop logic.
Although not a traditional algorithm, it can serve as an educational example under the
/gamesdirectory.