summaryrefslogtreecommitdiffhomepage
path: root/loader/json.cpp
blob: 1a30a66ba1d75fb9776d526b055243d163bbb130 (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 loader_impl::deserialize_anim(StringView filename)
{
    return json_helper::from_json<anim_def>(filename);
}

} // namespace floormat::loader_detail