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