blob: c370c0f26dc4b8772b284cf838e2f4363f05a347 [file]
#ifndef _RIVE_SHAPE_PATH_FLAGS_HPP_
#define _RIVE_SHAPE_PATH_FLAGS_HPP_
#include "rive/rive_types.hpp"
namespace rive
{
enum class ShapePathFlags : uint8_t
{
none = 0,
hidden = 1 << 0, // Unused at runtime
isCounterClockwise = 1 << 1,
};
} // namespace rive
#endif