Here we demonstrate a basic framework of a pygame application.
pygame.init()= pygame.time.Clock()
clock = 30
FPS
= True
running
while running:
clock.tick(FPS)
for event in pygame.event.get():
# multiple events handling
if event.type == pygame.QUIT:
= False
running
pygame.display.flip()