geode/loader/src/hooks/update.cpp
2022-07-30 19:24:03 +03:00

11 lines
255 B
C++

#include <Geode/Modify.hpp>
#include <InternalLoader.hpp>
USE_GEODE_NAMESPACE();
class $modify(CCScheduler) {
void update(float dt) {
InternalLoader::get()->executeGDThreadQueue();
return CCScheduler::update(dt);
}
};