snake
annotate snake.py @ 30:c7a1ed15ae42
snake.py passes
author | Alex Martynov <martiran@kodomo.fbb.msu.ru> |
---|---|
date | Sun, 19 Dec 2010 15:55:52 +0300 |
parents | c2ace6e23988 |
children | 76d0514d1ef9 |
rev | line source |
---|---|
martiran@30 | 1 class Snake(object): |
martiran@30 | 2 def __init__ (self, cells): |
martiran@30 | 3 pass |
martiran@30 | 4 def load (self, file): |
martiran@30 | 5 pass |
martiran@30 | 6 def fill (self): |
martiran@30 | 7 pass |
martiran@30 | 8 |
martiran@30 | 9 |
martiran@30 | 10 class Rule(object): |
martiran@30 | 11 def __init__ (self): |
martiran@30 | 12 pass |
martiran@30 | 13 def load (file): |
martiran@30 | 14 pass |
martiran@30 | 15 def applies (field, x, y): |
martiran@30 | 16 pass |
martiran@30 | 17 def rotate (rot): |
martiran@30 | 18 pass |
martiran@30 | 19 |