| 104 | } |
| 105 | |
| 106 | void GDREBackgroundProgress::add_task(const String &p_task, const String &p_label, int p_steps) { |
| 107 | callable_mp(this, &GDREBackgroundProgress::_add_task).call_deferred(p_task, p_label, p_steps); |
| 108 | } |
| 109 | |
| 110 | void GDREBackgroundProgress::task_step(const String &p_task, int p_step) { |
| 111 | //this code is weird, but it prevents deadlock. |
no test coverage detected