#include "beatnoteimpl.h" #include namespace Beatsaber { void from_json(const json& j, Note& n) { n.time = j["_time"]; n.line = j["_lineIndex"]; n.layer = j["_lineLayer"]; n.type = j["_type"]; n.cutdir = j["_cutDirection"]; } }