Comments

Log in with itch.io to leave a comment.

(7 edits)

I had to edit main.py to be able to play the game.

What to do:

Add this line on the top of the file:

from pathlib import Path

repleace all

pygame.image.load("path")

with

pygame.image.load(Path("path")) 

and rename file "Hard.png" in Assets folder to "hard.png"

After all of this changes, the code should run.

I know am a bit late but Thanks for the advice and will get around to implementing it.