| 37 | } |
| 38 | |
| 39 | static std::optional<LevelCell*> cellMapper(CCNode* cell) { |
| 40 | auto lc = typeinfo_cast<LevelCell*>(cell); |
| 41 | return lc && isValidLevelType(lc->m_level->m_levelType) ? std::optional{lc} : std::nullopt; |
| 42 | } |
| 43 | |
| 44 | $override |
| 45 | void setupLevelBrowser(CCArray* p0) { |
nothing calls this directly
no test coverage detected