mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-04 05:44:35 +00:00
[PR #1475] [CLOSED] Add Pong Game in C to /games #2074
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?
📋 Pull Request Information
Original PR: https://github.com/TheAlgorithms/C/pull/1475
Author: @tadeyemo32
Created: 6/23/2025
Status: ❌ Closed
Base:
master← Head:master📝 Commits (2)
eeff174Add Pong game to games directory1ffb9d9Add Pong game with full cross-platform support and README📊 Changes
6 files changed (+239 additions, -0 deletions)
View changed files
➕
games/pong/.DS_Store(+0 -0)➕
games/pong/Makefile(+25 -0)➕
games/pong/README.md(+23 -0)➕
games/pong/assets/button.wav(+0 -0)➕
games/pong/game(+0 -0)➕
games/pong/main.c(+191 -0)📄 Description
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.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.