| 326 | } |
| 327 | |
| 328 | List<int> jsonToIntList(Json const& v) { |
| 329 | List<int> result; |
| 330 | for (auto const& entry : v.iterateArray()) |
| 331 | result.push_back(entry.toInt()); |
| 332 | return result; |
| 333 | } |
| 334 | |
| 335 | List<Vec2I> jsonToVec2IList(Json const& v) { |
| 336 | List<Vec2I> result; |
no test coverage detected