blob: e94cfbc12c4c3403f85b4c19784d1d529d02a264 [file] [log] [blame]
#ifndef _RIVE_KEY_FRAME_DOUBLE_HPP_
#define _RIVE_KEY_FRAME_DOUBLE_HPP_
#include "rive/generated/animation/keyframe_double_base.hpp"
namespace rive {
class KeyFrameDouble : public KeyFrameDoubleBase {
public:
void apply(Core* object, int propertyKey, float mix) override;
void applyInterpolation(Core* object,
int propertyKey,
float seconds,
const KeyFrame* nextFrame,
float mix) override;
};
} // namespace rive
#endif