MushMachine/framework/sound/src/mm/soloud_json.hpp

15 lines
230 B
C++

#pragma once
#include <nlohmann/json_fwd.hpp>
#include <soloud_sfxr.h>
namespace SoLoud {
//SoLoud::Sfxr
void to_json(nlohmann::json& j, const Sfxr& sfxr);
void from_json(const nlohmann::json& j, Sfxr& sfxr);
} // SoLoud