Commit eda73670 by BellCodeEditor

save project

parent 4dcfdee3
Showing with 13 additions and 0 deletions
import pygame
pygame.init()
bg = pygame.image.load("bg.png")
app = pygame.image.load("apple.png")
screen = pygame.display.set_mode((640,480))
while True:
screen.blit(bg,(0,0))
screen.blit(app,(0,0))
screen.blit(app,(610,0))
screen.blit(app,(610,450))
screen.blit(app,(0,450))
pygame.display.update()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment