diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-12-12 21:12:51 -0200 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-12-12 21:12:51 -0200 |
commit | ac9b62df34695e8c7f4fbb838c6126bd98671316 (patch) | |
tree | b010fdd0d733353ba4646bc26d3ecf5ee141eb5c /Project/Element.h | |
parent | 7075de4b71a96afb7ca7c6cc115a4ec542ac53a9 (diff) | |
download | PSP.git-ac9b62df34695e8c7f4fbb838c6126bd98671316.tar.gz PSP.git-ac9b62df34695e8c7f4fbb838c6126bd98671316.tar.xz PSP.git-ac9b62df34695e8c7f4fbb838c6126bd98671316.zip |
Many elements save implemented
Diffstat (limited to 'Project/Element.h')
-rw-r--r-- | Project/Element.h | 2 |
1 files changed, 2 insertions, 0 deletions
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<wxPoint2DDouble> GetPointList() const { return m_pointList; } + // Pure-virtuals methods virtual bool AddParent(Element* parent, wxPoint2DDouble position) = 0; virtual bool Contains(wxPoint2DDouble position) const = 0; |