mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-06-19 19:26:36 +02:00
18 lines
237 B
C++
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
|
|
|