| 25 | } |
| 26 | |
| 27 | void SEUpdaterInitialize(char const* binPath) |
| 28 | { |
| 29 | if (gUpdater) return; |
| 30 | |
| 31 | if (!gGameHelpers) { |
| 32 | gGameHelpers = std::make_unique<GameHelpers>(); |
| 33 | } |
| 34 | |
| 35 | gUpdater = std::make_unique<ScriptExtenderUpdater>(); |
| 36 | gUpdater->Initialize(binPath); |
| 37 | } |
| 38 | |
| 39 | void SEUpdaterShowConsole() |
| 40 | { |
no test coverage detected