| 433 | } |
| 434 | |
| 435 | void EditorExportPreset::set_patch(int p_index, const String &p_path) { |
| 436 | remove_patch(p_index); |
| 437 | add_patch(p_path, p_index); |
| 438 | } |
| 439 | |
| 440 | String EditorExportPreset::get_patch(int p_index) { |
| 441 | ERR_FAIL_INDEX_V(p_index, patches.size(), String()); |
no outgoing calls
no test coverage detected