blob: 4d2d27fb8928a98d992597eb03bb39cacc2ae168 [file]
#ifndef _RIVE_STATE_MACHINE_TRIGGER_BASE_HPP_
#define _RIVE_STATE_MACHINE_TRIGGER_BASE_HPP_
#include "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