diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-12 08:40:08 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-12 09:57:16 +0100 |
commit | a6af5d7b0cdb037bf8d0fd99aedfedc9789fd74c (patch) | |
tree | 6664758f61d0bee67ba64f231a6ec2e6b4dd72ac /loader/json.cpp | |
parent | 7434d29f3ce0033194b53b44ed881f749e67da75 (diff) |
add offset to anim_group rotations
Diffstat (limited to 'loader/json.cpp')
-rw-r--r-- | loader/json.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/json.cpp b/loader/json.cpp index e66a58f2..be621b61 100644 --- a/loader/json.cpp +++ b/loader/json.cpp @@ -4,9 +4,9 @@ namespace floormat::loader_detail { -Serialize::anim deserialize_anim(StringView filename) +anim_def deserialize_anim(StringView filename) { - return json_helper::from_json<Serialize::anim>(filename); + return json_helper::from_json<anim_def>(filename); } } // namespace floormat::loader_detail |