#ifndef LINE_H #define LINE_H #include class Line { private: int startX, startY, endX, endY; QString color; public: Line(); void setStartPoint(int x, int y); void setEndPoint(int x, int y); void setColor(QString color); int getStartX(); int getStartY(); int getEndX(); int getEndY(); QString getColor(); QString toLuaTable(); }; #endif // LINE_H