1 #from naja.constants import TILE_SIZE
2 from naja.widgets.base import Widget
3 from naja.resources import resources
6 class TileWidget(Widget):
7 """Widget which holds a tile on the game board."""
8 def __init__(self, pos, image=None):
9 super(TileWidget, self).__init__(pos, (96, 96))
14 def draw(self, surface):
15 surface.blit(self.surface, self.rect)