Files
MushMachine/framework/sound/src/mm/sound_loader_wav.hpp

18 lines
237 B
C++

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