blob: 7ccd4b4b16f2764b4e7c79e36154ad4c22078298 [file] [log] [blame]
#ifndef _RIVE_PATH_VERTEX_HPP_
#define _RIVE_PATH_VERTEX_HPP_
#include "rive/bones/weight.hpp"
#include "rive/generated/shapes/path_vertex_base.hpp"
#include "rive/math/mat2d.hpp"
namespace rive {
class PathVertex : public PathVertexBase {
public:
StatusCode onAddedDirty(CoreContext* context) override;
void markGeometryDirty() override;
};
} // namespace rive
#endif