| 1100 | } |
| 1101 | |
| 1102 | void Application::invokeInRender(const std::function<void()>& func) { |
| 1103 | _renderEvent.post("Invoke"_slice, func); |
| 1104 | } |
| 1105 | |
| 1106 | void Application::invokeInLogic(const std::function<void()>& func) { |
| 1107 | _logicEvent.post("Invoke"_slice, func); |