#pragma once #include #include #include namespace MM { class Engine; struct SoundLoaderWavFile { std::shared_ptr<::SoLoud::Wav> load(const std::string& path, Engine& engine) const; }; } // MM