mirror of
https://github.com/geode-sdk/geode.git
synced 2024-12-03 04:36:55 -05:00
11 lines
255 B
C++
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);
|
|
}
|
|
};
|