mirror of
https://github.com/geode-sdk/geode.git
synced 2024-12-02 12:17:10 -05:00
12 lines
299 B
C++
12 lines
299 B
C++
#include <loader/LoaderImpl.hpp>
|
|
|
|
USE_GEODE_NAMESPACE();
|
|
|
|
#include <Geode/modify/CCScheduler.hpp>
|
|
|
|
struct FunctionQueue : Modify<FunctionQueue, CCScheduler> {
|
|
void update(float dt) {
|
|
LoaderImpl::get()->executeGDThreadQueue();
|
|
return CCScheduler::update(dt);
|
|
}
|
|
};
|