2 Widget that holds the games's bits.
5 from .base import Widget
8 class GameBitsWidget(Widget):
10 Widget which holds the game's bits.
12 def __init__(self, pos, image=None):
13 super(GameBitsWidget, self).__init__(pos, (96, 96))
18 def draw(self, surface):
19 surface.blit(self.surface, self.rect)