Basic score count working

update takes movement into account
This commit is contained in:
Urban Modig
2025-08-22 11:00:19 +02:00
parent 9bb76ce682
commit b9a43be3c6
9 changed files with 55 additions and 36 deletions

View File

@ -96,7 +96,7 @@ public class Ghost {
Point point = new Point(
position.x + direction.dx,
position.y + direction.dy);
log.debug("Next position {}", point);
//log.debug("Next position {}", point);
return point;
}