Remove file and directory not in use

This commit is contained in:
Patricia Aas 2021-07-01 11:03:39 +02:00
parent fc31086ab9
commit 3f35a3d794
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
# 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);
~~~