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