One true import-style
[naja.git] / naja / widgets / game_bits.py
1 """
2 Widget that holds the games's bits.
3 """
4
5 from naja.constants import BIT_SIZE
6 from naja.widgets.base import Widget
7
8
9 class GameBitsWidget(Widget):
10     """
11     Widget which holds the game's bits.
12     """
13     def __init__(self, pos, image=None):
14         super(GameBitsWidget, self).__init__(pos, BIT_SIZE)
15
16     def prepare(self):
17         pass
18
19     def draw(self, surface):
20         pass
21         #surface.blit(self.surface, self.rect)