| 5663 | } |
| 5664 | |
| 5665 | static std::string ASGetCurrCampaignID() { |
| 5666 | ScriptableCampaign* sc = Engine::Instance()->GetCurrentCampaign(); |
| 5667 | if (sc) { |
| 5668 | return sc->GetCampaignID(); |
| 5669 | } else { |
| 5670 | return ""; |
| 5671 | } |
| 5672 | } |
| 5673 | |
| 5674 | static std::string ASGetCurrLevelRelPath() { |
| 5675 | SceneGraph* s = Engine::Instance()->GetSceneGraph(); |
nothing calls this directly
no test coverage detected