Commit 91826c67 by BellCodeEditor

auto save

parent d38a1239
Showing with 13 additions and 0 deletions
import pygame as a
from pygame import locals as b
a.init()
screen=a.display.set_mode()
a.display.set_caption('demo')
bg=a.image.load('bg.png')
while True:
for event in a.event.get():
if event.type == b.QUIT:
exit()
a=screen.blit(bg,(0,0))
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