blob: 871d10e0875dba91b5ff74c90862139b0c5bc0fa [file] [log] [blame]
#ifndef _RIVE_STATE_MACHINE_TRIGGER_BASE_HPP_
#define _RIVE_STATE_MACHINE_TRIGGER_BASE_HPP_
#include "rive/animation/state_machine_input.hpp"
namespace rive
{
class StateMachineTriggerBase : public StateMachineInput
{
protected:
typedef StateMachineInput Super;
public:
static const uint16_t typeKey = 58;
/// Helper to quickly determine if a core object extends another without RTTI
/// at runtime.
bool isTypeOf(uint16_t typeKey) const override
{
switch (typeKey)
{
case StateMachineTriggerBase::typeKey:
case StateMachineInputBase::typeKey:
case StateMachineComponentBase::typeKey:
return true;
default:
return false;
}
}
uint16_t coreType() const override { return typeKey; }
Core* clone() const override;
protected:
};
} // namespace rive
#endif