| 19 | static std::chrono::high_resolution_clock::time_point lastVariableChange{}; |
| 20 | |
| 21 | static bool setup() |
| 22 | { |
| 23 | AddEarlySaveStep(SaveVariables); |
| 24 | AddEarlyLoadStep(LoadVariables); |
| 25 | AddPluginCleanupStep([]() { variables.clear(); }); |
| 26 | return true; |
| 27 | } |
| 28 | static bool setupDone = setup(); |
| 29 | |
| 30 | static void setLastVariableChangeTime() |
no test coverage detected