Add widgets and skeleton for game scene.
[naja.git] / naja / widgets / game_bits.py
diff --git a/naja/widgets/game_bits.py b/naja/widgets/game_bits.py
new file mode 100644 (file)
index 0000000..54fa683
--- /dev/null
@@ -0,0 +1,19 @@
+"""
+Widget that holds the games's bits.
+"""
+
+from .base import Widget
+
+
+class GameBitsWidget(Widget):
+    """
+    Widget which holds the game's bits.
+    """
+    def __init__(self, pos, image=None):
+        super(GameBitsWidget, self).__init__(pos, (96, 96))
+
+    def prepare(self):
+        pass
+
+    def draw(self, surface):
+        surface.blit(self.surface, self.rect)