Commit d197f852 by BellCodeEditor

save project

parent c6188a1e
Showing with 22 additions and 5 deletions
import pygame
# 初始化pygame,为使用pygame做准备
from pygame import locals
pygame.init()
backgroung = pygame.image.load('bg.png')
screen=pygame.display.set_mode((800, 600))
body =pygame.image.load('body.png')
up = pygame.image.load('up.png')
left = pygame.image.load('left.png')
down = pygame.image.load('down.png')
right = pygame.image.load('right.png')
apple = pygame.image.load('apple.png')
while True:
for event in pygame.event.get():
if event.type == locals.QUIT:
exit()
screen.blit(backgroung,(0,0))
screen.blit(right,(180,120))
screen.blit(body,(150,120))
screen.blit(body,(120,120))
screen.blit(body,(90,120))
screen.blit(apple,(120,180))
# 创建一个窗口
??
\ No newline at end of file
pygame.display.update()
\ No newline at end of file
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