Fucking megres
[naja.git] / naja / widgets / info_area.py
1 """
2 Widget for the game board information area.
3 """
4
5 from .base import Widget
6
7
8 class InfoAreaWidget(Widget):
9     """
10     Widget for the game board information area.
11     """
12     def __init__(self, pos, image=None):
13         super(InfoAreaWidget, self).__init__(pos, (96, 96))
14
15     def prepare(self):
16         pass
17
18     def draw(self, surface):
19         surface.blit(self.surface, self.rect)