Revert "use vendored raylib from dependencies repo" (#37537)

Revert "use vendored raylib from dependencies repo (#37489)"

This reverts commit 0374979397.
This commit is contained in:
Shane Smiskol
2026-03-03 01:13:11 -08:00
committed by GitHub
parent 91b7752268
commit 92f9684fdb
15 changed files with 15882 additions and 26 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
FAIL=0
if grep -n '#include "third_party/raylib/include/raylib\.h"' $@ | grep -v '^system/ui/raylib/raylib\.h'; then
echo -e "Bad raylib include found! Use '#include \"system/ui/raylib/raylib.h\"' instead\n"
FAIL=1
fi
exit $FAIL