summaryrefslogtreecommitdiff
path: root/common.py
diff options
context:
space:
mode:
authorPeter Ward <peteraward@gmail.com>2012-07-19 20:08:23 +1000
committerPeter Ward <peteraward@gmail.com>2012-07-19 20:08:23 +1000
commit93ba106c94b7a2d2109842432fed3dbe920c3558 (patch)
tree921f139e0db186f676cba9c3917489479c51ab88 /common.py
parent7fb2789ea7b25a4825ff4b99a832758d3533ded5 (diff)
Move everything into a package.
Diffstat (limited to 'common.py')
-rw-r--r--common.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/common.py b/common.py
deleted file mode 100644
index 398f810..0000000
--- a/common.py
+++ /dev/null
@@ -1,13 +0,0 @@
-import os
-
-directions = {
- 'U': (0, -1),
- 'D': (0, 1),
- 'L': (-1, 0),
- 'R': (1, 0),
-}
-
-class Squares(object):
- EMPTY = '.'
- APPLE = '*'
-