PEP-8
[naja.git] / naja / constants.py
index bee1ac5177ed7b38a0c94fff19c60a95b3ce8bd5..6ffc1a4cc2fb844cd5304a9a1b543260fbea215a 100644 (file)
@@ -13,8 +13,12 @@ DEFAULTS = dict(
     debug=False,
     sound=True,
     music=True,
+    # We calculate the default in options.py
+    save_location=None,
     # Debug flags:
     initial_bits=None,
+    cheat_enabled=False,
+    game_state=None,
 )
 
 # Sound constants
@@ -139,4 +143,14 @@ ACTION_GLYPHS = AttrDict({
     'WINTOKEN': 'glyphs/win.png',
     'MSB': 'glyphs/msb.png',
     'NOTHING': 'glyphs/do_nothing.png',
+    'SHIFT_LEFT': 'glyphs/shift_left.png',
+    'SHIFT_RIGHT': 'glyphs/shift_right.png',
 })
+
+TUNES = (
+    'ants.ogg',
+    'python.ogg',
+    'death_on_a_b.ogg',
+    'scape.ogg',
+    'another_beek.ogg',
+)