| 653 | } |
| 654 | |
| 655 | void GodotModule::iterate() { |
| 656 | godot::GodotInstance *instance = nullptr; |
| 657 | { |
| 658 | std::lock_guard lock(_mutex); |
| 659 | instance = _instance; |
| 660 | } |
| 661 | if (instance && instance->is_started()) { |
| 662 | instance->iteration(); |
| 663 | } |
| 664 | } |
nothing calls this directly
no outgoing calls
no test coverage detected