| 40 | } |
| 41 | |
| 42 | cMap::cMap() { |
| 43 | mData = std::make_shared<std::vector<uint8_t>>(); |
| 44 | mTile_Ptr = 0; |
| 45 | } |
| 46 | |
| 47 | int32 cMap::Tile_Get(const size_t pTileX, const size_t pTileY) { |
| 48 | if (pTileX > mParams.mWidth || pTileY > mParams.mHeight) |
nothing calls this directly
no outgoing calls
no test coverage detected