(self)
| 79 | self.draw(surface) |
| 80 | |
| 81 | def initBowlingMap(self): |
| 82 | print('initBowlingMap') |
| 83 | for x in range(3, self.map.width): |
| 84 | for y in range(self.map.height): |
| 85 | self.map.setMapGridType(x, y, c.MAP_EXIST) |
| 86 | |
| 87 | def initState(self): |
| 88 | if c.CHOOSEBAR_TYPE in self.map_data: |
no test coverage detected