Commit 23bd3f6d by BellCodeEditor

save project

parent 64e84a3e
Showing with 15 additions and 4 deletions
import pygame import pygame
from pygame import from pygame import locals
# 初始化pygame,为使用pygame做准备 # 初始化pygame,为使用pygame做准备
pygame.init() pygame.init()
# 创建一个窗口 # 创建一个窗口
screen=pygame.display.set_mode((100,200)) screen=pygame.display.set_mode((800,600))
blackground=pygame.image.load('bg.png')
right=pygame.image.load('right.png')
apple=pygame.image.load('apple.png')
body=pygame.image.load('body.png')
while True: while True:
for event in pygame for event in pygame.event.get():
\ No newline at end of file if event.type==locals.QUIT:
exit()
screen.blit(blackground,(0,0))
screen.blit(blackground,(240,120))
screen.blit(blackground,(0,0))
screen.blit(blackground,(0,0))
screen.blit(blackground,(0,0))
\ 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