| 4 | USING_NS_BF; |
| 5 | |
| 6 | void HeadlessApp::Init() |
| 7 | { |
| 8 | mRunning = true; |
| 9 | |
| 10 | Beefy::String exePath; |
| 11 | BfpGetStrHelper(exePath, [](char* outStr, int* inOutStrSize, BfpResult* result) |
| 12 | { |
| 13 | BfpSystem_GetExecutablePath(outStr, inOutStrSize, (BfpSystemResult*)result); |
| 14 | }); |
| 15 | |
| 16 | mInstallDir = GetFileDir(exePath) + "/"; |
| 17 | } |
| 18 | |
| 19 | void HeadlessApp::Run() |
| 20 | { |
nothing calls this directly
no test coverage detected