| 77 | } |
| 78 | |
| 79 | void LoadSoundGroup(const char* path, const char* data) { |
| 80 | // Disabled function as there is currently no support for loading data from within zip files, if the feature |
| 81 | // should exists in the future, it should be part of the asset manager. /Max Danielsson 2016 September 15 |
| 82 | assert(false); |
| 83 | /* |
| 84 | LOGI << "Loading SoundGroupInfo \"" << path << "\"" << std::endl; |
| 85 | SoundGroupInfo sgi; |
| 86 | sgi.ParseXML(data); |
| 87 | */ |
| 88 | } |
| 89 | |
| 90 | void LoadSound(const char* path, const char* data) { |
| 91 | LOGI << "Loading Sound file \"" << path << "\"" << std::endl; |
no outgoing calls
no test coverage detected