diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-12-14 21:12:05 -0200 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-12-14 21:12:05 -0200 |
commit | 341fd025a924f779acebcfa0ffcf07f46f8240c9 (patch) | |
tree | e464a675baa606a529c257f467e38f567e1508ff /Project/Element.h | |
parent | e86a20525e9838f4b3962eb267ea51dce7e8fb77 (diff) | |
download | PSP.git-341fd025a924f779acebcfa0ffcf07f46f8240c9.tar.gz PSP.git-341fd025a924f779acebcfa0ffcf07f46f8240c9.tar.xz PSP.git-341fd025a924f779acebcfa0ffcf07f46f8240c9.zip |
Many elements open implemented
Diffstat (limited to 'Project/Element.h')
-rw-r--r-- | Project/Element.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Project/Element.h b/Project/Element.h index cdad147..512fc8f 100644 --- a/Project/Element.h +++ b/Project/Element.h @@ -98,6 +98,7 @@ public: void ShowPickbox(bool showPickbox = true) { m_showPickbox = showPickbox; } void SetBorderSize(double borderSize) { m_borderSize = borderSize; } void SetOnline(bool online = true); + virtual void SetPointList(std::vector<wxPoint2DDouble> pointList) { m_pointList = pointList; } // Getters wxRect2DDouble GetRect() const { return m_rect; } wxPoint2DDouble GetPosition() const { return m_position; } |