comparison gamelib/popupmenu.py @ 69:d4bbb26099cc

Some debug object cleanup.
author Jeremy Thurgood <firxen@gmail.com>
date Mon, 23 Aug 2010 20:50:36 +0200
parents 9048cf43f613
children 213e47dea4d0
comparison
equal deleted inserted replaced
68:158a13a48d48 69:d4bbb26099cc
11 11
12 def __init__(self, shell): 12 def __init__(self, shell):
13 self.shell = shell 13 self.shell = shell
14 items = [ 14 items = [
15 ('Resume Game', 'hide'), 15 ('Resume Game', 'hide'),
16 ('Quit Game', 'quit'),
16 ('Exit to Main Menu', 'main_menu'), 17 ('Exit to Main Menu', 'main_menu'),
17 ] 18 ]
18 # albow.menu.Menu ignores title string 19 # albow.menu.Menu ignores title string
19 Menu.__init__(self, None, items) 20 Menu.__init__(self, None, items)
20 self.font = get_font(16, 'Vera.ttf') 21 self.font = get_font(16, 'Vera.ttf')