libBeatsaber/include/beatsaber-impl/beatnoteimpl.h

13 lines
205 B
C++

#pragma once
#include "beatnote.h"
#include <nlohmann/json_fwd.hpp>
using json = nlohmann::json;
namespace Beatsaber {
void from_json(const json& j, Note& n);
void from_json(const json& j, Wall& n);
}