(self, map_x, map_y, type)
| 30 | map_y * c.GRID_Y_SIZE + c.GRID_Y_SIZE//5 * 3 + c.MAP_OFFSET_Y) |
| 31 | |
| 32 | def setMapGridType(self, map_x, map_y, type): |
| 33 | self.map[map_y][map_x] = type |
| 34 | |
| 35 | def getRandomMapIndex(self): |
| 36 | map_x = random.randint(0, self.width-1) |
no outgoing calls
no test coverage detected