mirror of
https://github.com/geode-sdk/geode.git
synced 2025-03-02 00:13:54 -05:00
12 lines
No EOL
298 B
C++
12 lines
No EOL
298 B
C++
#include <InternalLoader.hpp>
|
|
|
|
USE_GEODE_NAMESPACE();
|
|
|
|
#include <Geode/modify/CCScheduler.hpp>
|
|
|
|
struct FunctionQueue : Modify<FunctionQueue, CCScheduler> {
|
|
void update(float dt) {
|
|
InternalLoader::get()->executeGDThreadQueue();
|
|
return CCScheduler::update(dt);
|
|
}
|
|
}; |