Add tiles to the board. Skip draw for other game scene widgets for now
[naja.git] / naja / widgets / player_bits.py
1 """
2 Widget that holds the player's bits.
3 """
4
5 from .base import Widget
6 from naja.constants import BIT_SIZE
7
8
9 class PlayerBitsWidget(Widget):
10     """
11     Widget which holds the player's bits.
12     """
13     def __init__(self, pos, image=None):
14         super(PlayerBitsWidget, 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)