| 1018 | }; |
| 1019 | |
| 1020 | struct SoundFile { |
| 1021 | std::string path; |
| 1022 | void *data; |
| 1023 | size_t data_size; |
| 1024 | |
| 1025 | SoundFile(const std::string &path) : path(path), data(nullptr), data_size(0) {} |
| 1026 | }; |
| 1027 | |
| 1028 | SoundFile bgm_main("sound/Main/Bgm.mp3"); |
| 1029 | SoundFile sfx_main_post_suspend("sound/Main/PostSuspend.wav"); |
nothing calls this directly
no outgoing calls
no test coverage detected