Commit d165c430 by BellCodeEditor

save project

parent 6e15d7b0
Showing with 11 additions and 2 deletions
print('只因你太美')
\ No newline at end of file
......@@ -2,10 +2,16 @@ import pygame
from pygame import locals
# 初始化pygame,为使用pygame做准备
pygame.init()
# 创建一个窗口
shabby = pygame.image.load('bg.png')
sha = pygame.image.load('right.png')
bby = pygame.image.load('apple.png')
# 创建一个窗口 肯定好玩的海军部队和shabby
screen = pygame.display.set_mode((660,480))
while True:
for event in pygame.event.get():
if event.type == locals.QUIT:
exit()
screen.blit(shabby,(0,0))
screen.blit(sha,(240,120))
screen.blit(bby,(360,300))
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