blit actually wants a pos, no need to calculate the rect
[naja.git] / naja / widgets / info_area.py
1 """
2 Widget for the game board information area.
3 """
4
5 from naja.constants import INFO_SIZE
6
7 from naja.widgets.base import Widget
8
9
10 class InfoAreaWidget(Widget):
11     """
12     Widget for the game board information area.
13     """
14     def __init__(self, pos, image=None):
15         super(InfoAreaWidget, self).__init__(pos, INFO_SIZE)
16
17     def prepare(self):
18         pass
19
20     def draw(self, surface):
21         pass
22         #surface.blit(self.surface, self.pos)