Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 600 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 600 Bytes

Playing with RayLib

This repo is to play with the raylib framework.

Use make to compile it

Desktop compilation

make
# or make src/ball

To run, execute the desired executable

./src/ball

Web

First, compile the raylib for the web. Check the official doc.

RAYLIB_PATH=./../raylib make -f Makefile.Web src/ball

To open the HTML, run a web server.

python -m http.server 8080

Then open the link: http:https://0.0.0.0:8080/src/ball.html