// SPDX-License-Identifier: LGPL-3.0-or-later #include "star_tool.h" #include #include star_tool::star_tool(canvas_buffer &canvas) : tool_base(canvas) { shape = TS_CIRCLE; // TODO: Use star for preview } void star_tool::draw(int x0, int y0, int x1, int y1) {} void star_tool::set_text(std::stringstream &stream) { stream << "Tool: Star"; }