Compare commits

..

2 Commits

Author SHA1 Message Date
1ba60c8169 Update .gitignore 2024-11-25 12:18:31 +01:00
83dd6bddcc Fix player movement 2024-11-25 12:18:12 +01:00
2 changed files with 3 additions and 1 deletions

3
.gitignore vendored
View File

@ -33,4 +33,5 @@
*.app
# IDE files
.idea/
.idea/
cmake-build-debug/

View File

@ -156,6 +156,7 @@ void Game::run() {
keys[2] = isPressed;
break;
case SDLK_d:
keys[3] = isPressed;
break;
}
}