2 Widget that holds the player's bits.
5 from naja.constants import BIT_SIZE
6 from naja.widgets.base import Widget
9 class PlayerBitsWidget(Widget):
11 Widget which holds the player's bits.
13 def __init__(self, pos, image=None):
14 super(PlayerBitsWidget, self).__init__(pos, BIT_SIZE)
19 def draw(self, surface):
21 #surface.blit(self.surface, self.rect)