Commit ba23b58e by BellCodeEditor

save project

parent a3b56042
Showing with 18 additions and 0 deletions
......@@ -2,6 +2,11 @@ import pygame
from pygame import locals
# 初始化pygame,为使用pygame做准备
pygame.init()
bg = pygame.image.load('bg.png')
r = pygame.image.load('right.png')
f = pygame.image.load('apple.png')
b = pygame.image.load('body.png')
# 创建一个窗口
screen = pygame.display.set_mode((800,600))
......@@ -10,3 +15,16 @@ while True:
print(event)
if event.type == locals.QUIT:
exit()
screen.blit(bg,(0,0))
screen.blit(r,(240,120))
screen.blit(r,(300,120))
screen.blit(f,(360,300))
for i in range(210,331,60):
for j in range(120,301,30):
screen.blit(b,(i,j))
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