blob: 7527f521b81bd46641076e2dab527a789ea06e53 [file] [log] [blame]
#ifndef _RIVE_TEXT_INPUT_CURSOR_HPP_
#define _RIVE_TEXT_INPUT_CURSOR_HPP_
#include "rive/generated/text/text_input_cursor_base.hpp"
#include <stdio.h>
namespace rive
{
class TextInputCursor : public TextInputCursorBase
{
public:
Core* hitTest(HitInfo*, const Mat2D&) override;
ShapePaintPath* localClockwisePath() override;
};
} // namespace rive
#endif