Created
July 11, 2017 20:15
-
-
Save faradaym/844c429d08edfac521e18985d18a07d9 to your computer and use it in GitHub Desktop.
This doesn't
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import pygame | |
import sys | |
running = True | |
def launch(): | |
pygame.init() | |
pygame.display.set_mode((640, 480)) | |
def exit_game(): | |
while running: | |
for event in pygame.event.get(): | |
if event.type == pygame.QUIT: | |
global running | |
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