blob: b9132a22588c379da14629811fabea2015f16a91 [file] [log] [blame]
#ifndef _RIVE_STATE_MACHINE_LAYER_COMPONENT_IMPORTER_HPP_
#define _RIVE_STATE_MACHINE_LAYER_COMPONENT_IMPORTER_HPP_
#include "rive/importers/import_stack.hpp"
namespace rive
{
class StateMachineLayerComponent;
class StateMachineFireEvent;
class StateMachineLayerComponentImporter : public ImportStackObject
{
public:
StateMachineLayerComponentImporter(StateMachineLayerComponent* component);
void addFireEvent(StateMachineFireEvent* fireEvent);
private:
StateMachineLayerComponent* m_stateMachineLayerComponent;
};
} // namespace rive
#endif