Commit 9987a27d by BellCodeEditor

auto save

parent 89304d97
Showing with 22 additions and 3 deletions
import pygame import pygame
from pygame import locals
# 初始化pygame,为使用pygame做准备 # 初始化pygame,为使用pygame做准备
pygame.init() pygame.init()
# 创建一个窗口 # 创建一个窗口
screen = pygame.display.set_mode((660,480))z screen = pygame.display.set_mode((660,480))
\ No newline at end of file
a = pygame.image.load("bg.png")
r = pygame.image.load("right.png")
f = pygame.image.load("apple.png")
b = pygame.image.load("body.png")
while True:
for event in pygame.event.get():
if event.type == locals.QUIT:
exit()
screen.blit(a,(0,0))
# screen.bilt(r,(240,120))
# screen.bilt(b,(210,120))
# screen.bilt(b,(180,120))
# screen.bilt(b,(180,90))
# screen.bilt(f,(360,300))
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