comparison mamba/constants.py @ 270:3c95ba7408f1

Add protected level name list. Add load & new buttons
author Neil Muller <drnlmuller@gmail.com>
date Thu, 15 Sep 2011 13:25:00 +0200
parents d83fd4ebddd3
children 04bb1ffcd054
comparison
equal deleted inserted replaced
269:adaaea7a8fef 270:3c95ba7408f1
25 25
26 # Colours 26 # Colours
27 FOCUS_COLOR = 'yellow' 27 FOCUS_COLOR = 'yellow'
28 COLOR = 'black' 28 COLOR = 'black'
29 29
30 # Special level directory files
31 RESERVED_NAMES = ['index', 'blank']
32
30 # Directions 33 # Directions
31 UP, DOWN, LEFT, RIGHT = [(0, -1), (0, 1), (-1, 0), (1, 0)] 34 UP, DOWN, LEFT, RIGHT = [(0, -1), (0, 1), (-1, 0), (1, 0)]
32 35
33 # Default command-line options 36 # Default command-line options
34 DEFAULTS = { 37 DEFAULTS = {