blob: 06d2d83db93ecc92a7a974036ce2f284673fc20f [file] [log] [blame]
#ifndef _RIVE_STATE_MACHINE_LAYER_COMPONENT_BASE_HPP_
#define _RIVE_STATE_MACHINE_LAYER_COMPONENT_BASE_HPP_
#include "rive/core.hpp"
namespace rive {
class StateMachineLayerComponentBase : public Core {
protected:
typedef Core Super;
public:
static const uint16_t typeKey = 66;
/// Helper to quickly determine if a core object extends another without RTTI
/// at runtime.
bool isTypeOf(uint16_t typeKey) const override {
switch (typeKey) {
case StateMachineLayerComponentBase::typeKey:
return true;
default:
return false;
}
}
uint16_t coreType() const override { return typeKey; }
void copy(const StateMachineLayerComponentBase& object) {}
bool deserialize(uint16_t propertyKey, BinaryReader& reader) override { return false; }
protected:
};
} // namespace rive
#endif