diff --git a/pacman/solution/SOLUTION.md b/pacman/solution/SOLUTION.md new file mode 100644 index 0000000..e10d705 --- /dev/null +++ b/pacman/solution/SOLUTION.md @@ -0,0 +1,11 @@ +# 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); +~~~