From ac9b62df34695e8c7f4fbb838c6126bd98671316 Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Mon, 12 Dec 2016 21:12:51 -0200 Subject: Many elements save implemented --- Project/Element.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Project/Element.h') diff --git a/Project/Element.h b/Project/Element.h index f5a2edb..27933a9 100644 --- a/Project/Element.h +++ b/Project/Element.h @@ -108,6 +108,8 @@ public: double GetAngle() const { return m_angle; } bool IsPickboxShown() const { return m_showPickbox; } bool IsOnline() const { return m_online; } + virtual std::vector GetPointList() const { return m_pointList; } + // Pure-virtuals methods virtual bool AddParent(Element* parent, wxPoint2DDouble position) = 0; virtual bool Contains(wxPoint2DDouble position) const = 0; -- cgit