I need help!
I need to load the 'play' button in the menu, but it doesn't work and it just shows black screen. The code is here:
import pygame
start = False
play = pygame.image.load('game/play.png')
pygame.init()
win = pygame.display.set_mode((500,500))
pygame.display.set_caption('игра')
while run == True:
pygame.time.delay(50)
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
if start == False:
win.blit(play, (0, 0))