- graceful exit

master
Steve Clement 2014-08-30 22:42:20 +02:00
parent b02e5db10c
commit bda1dc4835
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,7 @@
Avocados and stuff
"""
import os, random
import os, random, sys
import pygame
import avocado, lawyer
from pygame.locals import *
@ -125,6 +125,8 @@ class TheGame:
# Had enough of this?
if event.type == pygame.QUIT:
running = False
pygame.quit()
sys.exit()
pygame.display.flip()