2 Widget that holds the game tiles.
5 from .base import Widget
8 class BoardWidget(Widget):
10 Widget which holds all the tiles that make up the gameboard.
12 def __init__(self, pos, image=None):
13 super(BoardWidget, self).__init__(pos, (96, 96))
18 def draw(self, surface):
19 surface.blit(self.surface, self.rect)