0x0043C7A2
| 142 | |
| 143 | // 0x0043C7A2 |
| 144 | int32_t nextInput() |
| 145 | { |
| 146 | int32_t next = static_cast<int32_t>(*_tutorialIt); |
| 147 | _tutorialIt++; |
| 148 | |
| 149 | if (_tutorialIt == _tutorialData.end()) |
| 150 | { |
| 151 | stop(); |
| 152 | SceneManager::resetSceneAge(); |
| 153 | } |
| 154 | |
| 155 | return next; |
| 156 | } |
| 157 | |
| 158 | StringId nextString() |
| 159 | { |
no test coverage detected