removed warnings

This commit is contained in:
2025-11-28 21:25:18 +01:00
parent 8add9c7d7a
commit 4c50f99e67
5 changed files with 8 additions and 18 deletions

View File

@@ -61,7 +61,7 @@ public class Player extends Entity {
if(keyH.upPressed) direction = Direction.UP;
else if(keyH.downPressed) direction = Direction.DOWN;
else if(keyH.leftPressed) direction = Direction.LEFT;
else if(keyH.rightPressed) direction = Direction.RIGHT;
else direction = Direction.RIGHT;
// CHECK TILE COLLISION
collisionOn = false;