| 96 | } |
| 97 | |
| 98 | int16 MaxHeight() const { |
| 99 | int16 Height = 0; |
| 100 | |
| 101 | for (auto Tile : mTiles) { |
| 102 | if (Height < Tile.mY) |
| 103 | Height = Tile.mY; |
| 104 | } |
| 105 | return Height; |
| 106 | } |
| 107 | }; |
| 108 | |
| 109 | extern const int8 mTiles_NotFlyable[]; |
nothing calls this directly
no outgoing calls
no test coverage detected