8 lines
140 B
Python
8 lines
140 B
Python
import pygame
|
|
|
|
_image = pygame.image.load('Background.png')
|
|
|
|
|
|
def draw(surface: pygame.surface):
|
|
surface.blit(_image.convert(), (0, 0))
|