mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 13:11:19 +01:00
14 lines
374 B
C++
14 lines
374 B
C++
#ifndef _RIVE_KEY_FRAME_DRAW_ORDER_VALUE_HPP_
|
|
#define _RIVE_KEY_FRAME_DRAW_ORDER_VALUE_HPP_
|
|
#include "generated/animation/keyframe_draw_order_value_base.hpp"
|
|
namespace rive
|
|
{
|
|
class KeyFrameDrawOrderValue : public KeyFrameDrawOrderValueBase
|
|
{
|
|
public:
|
|
void onAddedClean(CoreContext* context) {}
|
|
void onAddedDirty(CoreContext* context) {}
|
|
};
|
|
} // namespace rive
|
|
|
|
#endif |