comparison gamelib/gui.py @ 39:d82d3e54a4ef

fixed more pep8 issues
author Rizmari Versfeld <rizziepit@gmail.com>
date Mon, 07 May 2012 00:26:55 +0200
parents 7e18a67995f6
children 38f41d046c6f
comparison
equal deleted inserted replaced
38:7e18a67995f6 39:d82d3e54a4ef
1 import os
2
3 import pygame
4 from pygame import image 1 from pygame import image
5 from pygame.sprite import Sprite
6 2
7 from gamelib import data 3 from gamelib import data
8 from gamelib.gui_base import * 4 from gamelib.gui_base import Drawable, TextButton
9 5
10 6
11 class ImageDrawable(Drawable): 7 class ImageDrawable(Drawable):
12 8
13 def __init__(self, rect, image): 9 def __init__(self, rect, image):