diff --git a/__pycache__/button.cpython-311.pyc b/__pycache__/button.cpython-311.pyc deleted file mode 100644 index e65d687..0000000 Binary files a/__pycache__/button.cpython-311.pyc and /dev/null differ diff --git a/background.mp3 b/background.mp3 deleted file mode 100644 index 31443db..0000000 Binary files a/background.mp3 and /dev/null differ diff --git a/KodeMono-Medium.ttf b/font/KodeMono-Medium.ttf similarity index 100% rename from KodeMono-Medium.ttf rename to font/KodeMono-Medium.ttf diff --git a/BULLET.png b/images/BULLET.png similarity index 100% rename from BULLET.png rename to images/BULLET.png diff --git a/ENEMY.png b/images/ENEMY.png similarity index 100% rename from ENEMY.png rename to images/ENEMY.png diff --git a/HANGAR.jpg b/images/HANGAR.jpg similarity index 100% rename from HANGAR.jpg rename to images/HANGAR.jpg diff --git a/ICON.png b/images/ICON.png similarity index 100% rename from ICON.png rename to images/ICON.png diff --git a/SPACE.jpg b/images/SPACE.jpg similarity index 100% rename from SPACE.jpg rename to images/SPACE.jpg diff --git a/SPACESHIP.png b/images/SPACESHIP.png similarity index 100% rename from SPACESHIP.png rename to images/SPACESHIP.png diff --git a/back.png b/images/back.png similarity index 100% rename from back.png rename to images/back.png diff --git a/best_score.png b/images/best_score.png similarity index 100% rename from best_score.png rename to images/best_score.png diff --git a/difficulty.png b/images/difficulty.png similarity index 100% rename from difficulty.png rename to images/difficulty.png diff --git a/difficulty_easy.png b/images/difficulty_easy.png similarity index 100% rename from difficulty_easy.png rename to images/difficulty_easy.png diff --git a/difficulty_hard.png b/images/difficulty_hard.png similarity index 100% rename from difficulty_hard.png rename to images/difficulty_hard.png diff --git a/difficulty_insane.png b/images/difficulty_insane.png similarity index 100% rename from difficulty_insane.png rename to images/difficulty_insane.png diff --git a/difficulty_medium.png b/images/difficulty_medium.png similarity index 100% rename from difficulty_medium.png rename to images/difficulty_medium.png diff --git a/new_game.png b/images/new_game.png similarity index 100% rename from new_game.png rename to images/new_game.png diff --git a/main.py b/main.py index 62a323f..7e8099c 100644 --- a/main.py +++ b/main.py @@ -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) diff --git a/explosion.wav b/music/explosion.wav similarity index 100% rename from explosion.wav rename to music/explosion.wav diff --git a/laser.wav b/music/laser.wav similarity index 100% rename from laser.wav rename to music/laser.wav