| 223 | unsigned int TileMap::getLayerCount() const { return (unsigned)this->layerMap.size(); } |
| 224 | |
| 225 | bool TileMap::tileIsValid(int x, int y, int z) const |
| 226 | { |
| 227 | if (z < 0 || z >= this->size.z || y < 0 || y >= this->size.y || x < 0 || x >= this->size.x) |
| 228 | return false; |
| 229 | return true; |
| 230 | } |
| 231 | |
| 232 | bool TileMap::tileIsValid(Vec3<int> tile) const |
| 233 | { |
no outgoing calls
no test coverage detected