(img_file_name)
| 141 | |
| 142 | def load_images(): |
| 143 | def load_image(img_file_name): |
| 144 | file_name = os.path.join(".", "images", img_file_name) |
| 145 | img = pygame.image.load(file_name) |
| 146 | img.convert() |
| 147 | return img |
| 148 | |
| 149 | return { |
| 150 | "background": load_image("background.png"), |
no test coverage detected