blob: 1eb44b0e20f9c349b0d3ef6ad6b80eff4d6ae8c6 [file] [log] [blame]
#ifndef _RIVE_POINTS_COMMON_PATH_HPP_
#define _RIVE_POINTS_COMMON_PATH_HPP_
#include "rive/generated/shapes/points_common_path_base.hpp"
#include <stdio.h>
namespace rive
{
class PointsCommonPath : public PointsCommonPathBase
{
public:
bool isPathClosed() const override { return isClosed(); }
bool isClockwise() const;
};
} // namespace rive
#endif