Rename test puzzle to marathon.
[naja.git] / naja / constants.py
index 6ffc1a4cc2fb844cd5304a9a1b543260fbea215a..0388d43303c26ae37981a6a5816aa3198aa64389 100644 (file)
@@ -78,6 +78,7 @@ BOARD_SIZE = (5 * TILE_SIZE[0], 5 * TILE_SIZE[1])
 BIT_SIZE = (5 * TILE_SIZE[0], (SCREEN[1] - 5 * TILE_SIZE[1]) // 2)
 INFO_SIZE = (SCREEN[0] - 5 * TILE_SIZE[0], SCREEN[1])
 INFO_LEFT_PADDING = 18
+INFO_RIGHT_PADDING = 18
 PLAYER_SIZE = (64, 96)
 ACTION_TEXT_OFFSET = 20
 
@@ -154,3 +155,9 @@ TUNES = (
     'scape.ogg',
     'another_beek.ogg',
 )
+
+# Puzzles, because resources can't give us file lists
+PUZZLES = (
+    'chess',
+    'marathon'
+)