summaryrefslogtreecommitdiffhomepage
path: root/loader/json.cpp
blob: be621b61e2333005a335149cde8b58c33fe9b188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "impl.hpp"
#include "serialize/json-helper.hpp"
#include "serialize/anim.hpp"

namespace floormat::loader_detail {

anim_def deserialize_anim(StringView filename)
{
    return json_helper::from_json<anim_def>(filename);
}

} // namespace floormat::loader_detail