| 438 | } |
| 439 | |
| 440 | String EditorExportPreset::get_patch(int p_index) { |
| 441 | ERR_FAIL_INDEX_V(p_index, patches.size(), String()); |
| 442 | return patches[p_index]; |
| 443 | } |
| 444 | |
| 445 | void EditorExportPreset::remove_patch(int p_index) { |
| 446 | ERR_FAIL_INDEX(p_index, patches.size()); |
no test coverage detected