Files
2022-08-25 00:27:03 +02:00

8 lines
140 B
Python

import pygame
_image = pygame.image.load('Background.png')
def draw(surface: pygame.surface):
surface.blit(_image.convert(), (0, 0))