blob: 4749dc2295b4d44387ffc7a02f1244cbe7387d70 [file] [log] [blame]
#ifndef _RIVE_KEY_FRAME_STRING_HPP_
#define _RIVE_KEY_FRAME_STRING_HPP_
#include "rive/generated/animation/keyframe_string_base.hpp"
namespace rive
{
class KeyFrameString : public KeyFrameStringBase
{
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