mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2025-02-24 05:53:23 +01:00
11 lines
264 B
C++
11 lines
264 B
C++
#include "better_hakus.hpp"
|
|
|
|
#include "better_beats.hpp"
|
|
|
|
nlohmann::ordered_json dump_hakus(const Hakus& hakus) {
|
|
auto j = nlohmann::ordered_json::array();
|
|
for (const auto& haku : hakus) {
|
|
j.push_back(beat_to_best_form(haku));
|
|
}
|
|
return j;
|
|
} |