mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-11-15 03:13:03 +01:00
15 lines
230 B
C++
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
|
||
|
|