Commit d313ad8f by BellCodeEditor

auto save

parent aefc5833
import pygame
pygame.init()
size = width, height = 600, 400
screen = pygame.display.set_mode(size)
pygame.display.set_caption("啥也不是")
ball = pygame.image.load(r"C:\Users\Administrator\Desktop\PYG02-ball.gif")
fclock = pygame.time.Clock()
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
exit()
pygame.display.update()
fclock.tick(500)
\ No newline at end of file
File deleted
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