Mouse detection

This commit is contained in:
Alexey 2025-06-27 18:08:53 +03:00
commit bcd01a95b3
5 changed files with 163 additions and 16 deletions

6
line.h
View file

@ -5,6 +5,9 @@
class Line
{
private:
int startX, startY, endX, endY;
QString color;
public:
Line();
void setStartPoint(int x, int y);
@ -16,9 +19,6 @@ public:
int getEndY();
QString getColor();
QString toLuaTable();
private:
int startX, startY, endX, endY;
QString color;
};
#endif // LINE_H