mirror of
https://github.com/geode-sdk/geode.git
synced 2024-12-03 04:36:55 -05:00
5af15fba7c
Don't use macros where not necessary! This deprecates the old macro by way of a weird alias namespace.
12 lines
308 B
C++
12 lines
308 B
C++
#include <loader/LoaderImpl.hpp>
|
|
|
|
using namespace geode::prelude;
|
|
|
|
#include <Geode/modify/CCScheduler.hpp>
|
|
|
|
struct FunctionQueue : Modify<FunctionQueue, CCScheduler> {
|
|
void update(float dt) {
|
|
LoaderImpl::get()->executeGDThreadQueue();
|
|
return CCScheduler::update(dt);
|
|
}
|
|
};
|