pacman/solution/SOLUTION.md
2021-05-10 15:14:38 +02:00

12 lines
259 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 position_delta = (time_delta.count() / 128.0);
~~~
Example
~~~
float position_delta = (time_delta.count() / 256.0);
~~~