File indexing completed on 2025-01-05 04:01:22
0001 /* 0002 * SPDX-FileCopyrightText: 2019-2023 Mattia Basaglia <dev@dragon.best> 0003 * 0004 * SPDX-License-Identifier: GPL-3.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include "model/animation/animatable.hpp" 0010 0011 namespace glaxnimate::io { 0012 0013 std::vector<std::unique_ptr<model::KeyframeBase>> split_keyframes(model::AnimatableBase* prop); 0014 0015 } // namespace glaxnimate::io