| 39 | } |
| 40 | |
| 41 | void ResourceImportMetadatav2::remove_source(int p_idx) { |
| 42 | ERR_FAIL_INDEX(p_idx, sources.size()); |
| 43 | sources.remove_at(p_idx); |
| 44 | } |
| 45 | |
| 46 | int ResourceImportMetadatav2::get_source_count() const { |
| 47 | // size was 32-bit in 2.0, so we need to cast to int |
no test coverage detected