Shorten hint text.
[naja.git] / naja / constants.py
index 2f8d3790245186852e93dcf60771e17b9a6887da..5e8b4fa7c791b675377f873ff7a1e7c459efe53f 100644 (file)
@@ -82,10 +82,7 @@ INFO_RIGHT_PADDING = 18
 PLAYER_SIZE = (64, 96)
 ACTION_TEXT_OFFSET = 20
 
-# Player States
-ACT = 1
-EXAMINE = 2
-
+# keys
 KEYS = AttrDict({
     'UP': (pgl.K_UP, pgl.K_w, pgl.K_COMMA),
     'DOWN': (pgl.K_DOWN, pgl.K_s, pgl.K_o),
@@ -155,3 +152,10 @@ TUNES = (
     'scape.ogg',
     'another_beek.ogg',
 )
+
+# Puzzles, because resources can't give us file lists
+PUZZLES = (
+    'chess',
+    'marathon',
+    'belts',
+)