Revision 31:76d0514d1ef9,
517 bytes
checked in by Alex Martynov <martiran@òÀæ>, 5 years ago
(diff) |
Engine.refill() -> Snake.fill()
|
Line | ˆà |
---|
1 | |
---|
2 | classˆàSnake(object): |
---|
3 | ˆà ˆà defˆà__init__ˆà(self,ˆàcells): |
---|
4 | ˆà ˆà ˆà ˆà pass |
---|
5 | ˆà ˆà defˆàloadˆà(self,ˆàfile): |
---|
6 | ˆà ˆà ˆà ˆà pass |
---|
7 | ˆà ˆà defˆàfillˆà(self): |
---|
8 | ˆà ˆà ˆà ˆà forˆàsell inˆàself.sells: |
---|
9 | ˆà ˆà ˆà ˆà ˆà ˆà sell.snake =ˆàself |
---|
10 | ˆà ˆà ˆà ˆà snake.cells[0].type =ˆà'head' |
---|
11 | ˆà ˆà ˆà ˆà snake.cells[-1].type =ˆà'tail' |
---|
12 | ˆà ˆà ˆà ˆà snake.cells[1:-1].type =ˆà'body' |
---|
13 | ˆà ˆà ˆà ˆà return |
---|
14 | |
---|
15 | |
---|
16 | classˆàRule(object): |
---|
17 | ˆà ˆà defˆà__init__ˆà(self): |
---|
18 | ˆà ˆà ˆà ˆà pass |
---|
19 | ˆà ˆà defˆàloadˆà(file): |
---|
20 | ˆà ˆà ˆà ˆà pass |
---|
21 | ˆà ˆà defˆàappliesˆà(field,ˆàx,ˆày): |
---|
22 | ˆà ˆà ˆà ˆà pass |
---|
23 | ˆà ˆà defˆàrotateˆà(rot): |
---|
24 | ˆà ˆà ˆà ˆà pass |
---|
Note: See
TracBrowser
for help on using the repository browser.