Skip to content

Latest commit

 

History

History
23 lines (21 loc) · 710 Bytes

README.md

File metadata and controls

23 lines (21 loc) · 710 Bytes

Pong-Game


Pong, a simple but very addictive game built using C++

Getting Started

  • Clone the repo
git clone https://github.com/Kayle54187/Pong-Game.git
  • Install raylib library (Use Make to install or Cmake)
git clone https://github.com/raysan5/raylib.git raylib
cd raylib/src/
make PLATFORM=PLATFORM_DESKTOP # To make the static version.
make PLATFORM=PLATFORM_DESKTOP RAYLIB_LIBTYPE=SHARED # To make the dynamic shared version.
make PLATFORM=PLATFORM_WEB # To make web version.
  • Compile the Project with raylib library (Directory and user will be different)
g++ /home/usr/Directory/Pong-Game/main.cpp -o main -lraylib

@Author Christian, 2024