(height, width, map)
| 86 | } |
| 87 | |
| 88 | adjustMap(height, width, map) { |
| 89 | this.setState({ |
| 90 | numRow: height, |
| 91 | numCol: width, |
| 92 | map: map, |
| 93 | agents: [], |
| 94 | numAgents: 0, |
| 95 | addedSRow: null, |
| 96 | addedSCol: null, |
| 97 | addedGRow: null, |
| 98 | addedGCol: null, |
| 99 | addedHeight: null, |
| 100 | addedWidth: null, |
| 101 | }); |
| 102 | } |
| 103 | componentDidMount() {} |
| 104 | |
| 105 | componentWillUnmount() {} |
no outgoing calls
no test coverage detected