mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-06-20 03:36:37 +02:00
initial import, >900commits predate this
This commit is contained in:
17
framework/sound/src/mm/sound_loader_wav.hpp
Normal file
17
framework/sound/src/mm/sound_loader_wav.hpp
Normal file
@ -0,0 +1,17 @@
|
||||
#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
|
||||
|
Reference in New Issue
Block a user