Fix temp var references not being resolved on macro copy and import

This commit is contained in:
WarmUpTill
2024-02-17 11:22:20 +01:00
committed by WarmUpTill
parent 6cbfc48736
commit aa1b10425f
6 changed files with 18 additions and 3 deletions

View File

@@ -28,6 +28,11 @@ void AddIntervalResetStep(std::function<void()> step, bool lock)
GetSwitcher()->AddIntervalResetStep(step, lock);
}
void RunPostLoadSteps()
{
GetSwitcher()->RunPostLoadSteps();
}
void AddPluginInitStep(std::function<void()> step)
{
GetSwitcher()->AddPluginInitStep(step);