libBeatsaber/include/beatsaber-impl/beatnoteimpl.h

13 lines
205 B
C
Raw Normal View History

2021-06-04 13:15:13 +02:00
#pragma once
#include "beatnote.h"
#include <nlohmann/json_fwd.hpp>
using json = nlohmann::json;
namespace Beatsaber {
void from_json(const json& j, Note& n);
2021-06-04 14:53:31 +02:00
void from_json(const json& j, Wall& n);
2021-06-04 13:15:13 +02:00
}