Skip to content

Instantly share code, notes, and snippets.

@faradaym
Created July 11, 2017 21:12
Show Gist options
  • Save faradaym/d8c660f042850f4359af5921790e6a31 to your computer and use it in GitHub Desktop.
Save faradaym/d8c660f042850f4359af5921790e6a31 to your computer and use it in GitHub Desktop.
Yay!
#!/usr/bin/python3
import pygame
import sys
running = True
def launch():
pygame.init()
pygame.display.set_mode((640, 480))
exit_game()
def exit_game():
global running
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
pygame.display.quit()
pygame.quit()
sys.exit()
launch()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment