blob: 6212e8293693be36548b6cc5c11a451d43f90adf [file]
#ifndef _RIVE_LAYER_STATE_IMPORTER_HPP_
#define _RIVE_LAYER_STATE_IMPORTER_HPP_
#include "importers/import_stack.hpp"
namespace rive
{
class LayerState;
class StateTransition;
class BlendAnimation;
class LayerStateImporter : public ImportStackObject
{
private:
LayerState* m_State;
public:
LayerStateImporter(LayerState* state);
void addTransition(StateTransition* transition);
bool addBlendAnimation(BlendAnimation* animation);
StatusCode resolve() override;
};
} // namespace rive
#endif