blob: 07490cfa1432a5fed94a3147b7ae7c9022f04f74 [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