| 1008 | } |
| 1009 | |
| 1010 | void Console::commandDirectorSubCommandStop(socket_native_type /*fd*/, std::string_view /*args*/) |
| 1011 | { |
| 1012 | auto director = Director::getInstance(); |
| 1013 | Scheduler* sched = director->getScheduler(); |
| 1014 | sched->runOnAxmolThread([]() { Director::getInstance()->stopAnimation(); }); |
| 1015 | } |
| 1016 | |
| 1017 | void Console::commandDirectorSubCommandStart(socket_native_type /*fd*/, std::string_view /*args*/) |
| 1018 | { |
nothing calls this directly
no test coverage detected