X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fwidgets%2Fgame_bits.py;h=21756586bf80276ea1ea28f072c81b252c22e81c;hb=6fad179c71412061cd4b1cc4d79e407ccc47780f;hp=682d520531a366790727212ac3786dc2c35d46da;hpb=3a158d5a9ed3bcf2f5e8ee56b22d03d0e1d524e1;p=naja.git diff --git a/naja/widgets/game_bits.py b/naja/widgets/game_bits.py index 682d520..2175658 100644 --- a/naja/widgets/game_bits.py +++ b/naja/widgets/game_bits.py @@ -2,7 +2,9 @@ Widget that holds the games's bits. """ -from naja.constants import BIT_SIZE +import pygame + +from naja.constants import BIT_SIZE, BITS from naja.widgets.base import Widget @@ -10,12 +12,12 @@ class GameBitsWidget(Widget): """ Widget which holds the game's bits. """ - def __init__(self, pos, image=None): + def __init__(self, pos, state): super(GameBitsWidget, self).__init__(pos, BIT_SIZE) + self.state = state def prepare(self): - pass + self.surface = pygame.Surface(BIT_SIZE) def draw(self, surface): - pass - #surface.blit(self.surface, self.pos) + surface.blit(self.surface, self.pos)