main
Everyone 2024-03-04 08:55:37 +02:00
parent cdb2c9d0b7
commit 1d9e951180
20 changed files with 8 additions and 8 deletions

Binary file not shown.

Binary file not shown.

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 104 KiB

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

Before

Width:  |  Height:  |  Size: 105 KiB

After

Width:  |  Height:  |  Size: 105 KiB

View File

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

16
main.py
View File

@ -30,14 +30,14 @@ TEXT_COL = (255, 255, 255)
SCORE_FILE_NAME = "score.scr"
new_game_img = pygame.image.load("images2/new_game.png")
difficulty_img = pygame.image.load("images2/difficulty.png")
best_score_img = pygame.image.load("images2/best_score.png")
back_img = pygame.image.load("images2/back.png")
difficulty_easy_img = pygame.image.load("images2/difficulty_easy.png")
difficulty_medium_img = pygame.image.load("images2/difficulty_medium.png")
difficulty_hard_img = pygame.image.load("images2/difficulty_hard.png")
difficulty_insane_img = pygame.image.load("images2/difficulty_insane.png")
new_game_img = pygame.image.load("images/new_game.png")
difficulty_img = pygame.image.load("images/difficulty.png")
best_score_img = pygame.image.load("images/best_score.png")
back_img = pygame.image.load("images/back.png")
difficulty_easy_img = pygame.image.load("images/difficulty_easy.png")
difficulty_medium_img = pygame.image.load("images/difficulty_medium.png")
difficulty_hard_img = pygame.image.load("images/difficulty_hard.png")
difficulty_insane_img = pygame.image.load("images/difficulty_insane.png")
new_game_button = button.Button(400, 320, new_game_img, 1)