pacman/solution/SOLUTION.md
Corentin Jabot 164db664ef Use VCPKG and reorganization
* Remove non-pacman exercises.
* Use vcpkg instead of conan ( make vcpkg a submodule)
* Merge the readmem these will need to be improve later
2021-05-10 14:58:00 +02:00

12 lines
263 B
Markdown

# Pac-Man Soulutions
## Make Pac-Man go slower
Increase the number you divide the delta with in [PacMan.cpp](../lib/PacMan.cpp)
~~~
float_t position_delta = (time_delta.count() / 128.0);
~~~
Example
~~~
float_t position_delta = (time_delta.count() / 256.0);
~~~