comparison gamelib/menu.py @ 528:0ce08d5e2acb

pyflakes-induced cleanup.
author Jeremy Thurgood <firxen@gmail.com>
date Fri, 10 Sep 2010 18:47:17 +0200
parents ece69836f00a
children 42742a62f9c3
comparison
equal deleted inserted replaced
527:6ef7cc57b94b 528:0ce08d5e2acb
1 # menu.py 1 # menu.py
2 # Copyright Boomslang team, 2010 (see COPYING File) 2 # Copyright Boomslang team, 2010 (see COPYING File)
3 # Main menu for the game 3 # Main menu for the game
4 4
5 from albow.screen import Screen 5 from albow.screen import Screen
6 from albow.controls import Image, Button, Label
7 from albow.layout import Column
8 from albow.resource import get_image 6 from albow.resource import get_image
9 from pygame import Rect
10 7
11 from gamelib.widgets import BoomImageButton 8 from gamelib.widgets import BoomImageButton
12 9
13 10
14 class SplashButton(BoomImageButton): 11 class SplashButton(BoomImageButton):