@echo off echo Initializing demo64k dependencies... if not exist third_party ( mkdir third_party ) if not exist third_party\miniaudio.h ( echo Fetching miniaudio.h... powershell -Command "Invoke-WebRequest https://raw.githubusercontent.com/mackron/miniaudio/master/miniaudio.h -OutFile third_party\miniaudio.h" ) else ( echo miniaudio.h already present. ) echo Done.