An implementation of Pacman in C++ using SFML.
Most likely this will not be of use to anyone.
- Check the
.vscode\tasks.json
args and.vscode\c_cpp_properties.json
includePaths. - Update them to point to wherever it is that your SFML files are located.
- Open a cmd prompt.
- Enter
set PATH=<project_path>\dlls;%PATH%
to add the folder to your PATH for the session. - You can check it was added by running
for %i in ("%PATH:;=" "%") do @echo %i
to list the paths in the PATH - Run
<my_file>.exe
or whatever you were trying to run.