Turn resources into a module, which can hold mutators too
[naja.git] / naja / scenes / menu.py
index 822c87a1eb77db35d98b965694c3aff81e7b4dae..771cf33318cd8b227b0a534ac9fc06939036291d 100644 (file)
@@ -13,8 +13,8 @@ class MenuScene(Scene):
 
     def __init__(self):
         super(MenuScene, self).__init__()
-        self.widgets.append(TextWidget((10, 10), 'Haai',
-                            colour=(255, 255, 255)))
+        self.widgets.append(TextWidget((10, 10), 'Haai', fontsize=32,
+                            colour='white'))
 
     def handle_event(self, ev):
         if ev.type == pgl.KEYUP and ev.key in (pgl.K_q, pgl.K_ESCAPE):