| 50 | } |
| 51 | |
| 52 | void MapNode::decreaseHeight() |
| 53 | { |
| 54 | const int height = m_isoCoordinates.height; |
| 55 | |
| 56 | if (height > 0) |
| 57 | { |
| 58 | m_isoCoordinates.height--; |
| 59 | m_sprite->isoCoordinates = m_isoCoordinates; |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | void MapNode::render() const { m_sprite->render(); } |
| 64 |
nothing calls this directly
no outgoing calls
no test coverage detected