(self, width, height)
| 2 | |
| 3 | class Map(object): |
| 4 | def __init__(self, width, height): |
| 5 | # self.__map = np.zeros((width, height)) |
| 6 | self.__width = width |
| 7 | self.__height = height |
| 8 | |
| 9 | # @property |
| 10 | # def map(self): |
nothing calls this directly
no outgoing calls
no test coverage detected