| 192 | } |
| 193 | |
| 194 | void InitDirectories() { |
| 195 | if (!(boost::filesystem::exists(CAR_PATH))) { |
| 196 | boost::filesystem::create_directories(CAR_PATH); |
| 197 | } |
| 198 | if (!(boost::filesystem::exists(TRACK_PATH))) { |
| 199 | boost::filesystem::create_directories(TRACK_PATH); |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | void PopulateAssets() { |
| 204 | using namespace boost::filesystem; |
nothing calls this directly
no outgoing calls
no test coverage detected