diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-08-08 17:01:53 -0300 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-08-08 17:01:53 -0300 |
commit | b5324f48c855b0c82ccf6da7d5a008fe5cf1c17e (patch) | |
tree | 5879b694e565cf445b6f3c9a59782f72ab7543d5 /Project/Element.h | |
parent | 139b076149594e6cf508aea269b061aa8b428d9c (diff) | |
download | PSP.git-b5324f48c855b0c82ccf6da7d5a008fe5cf1c17e.tar.gz PSP.git-b5324f48c855b0c82ccf6da7d5a008fe5cf1c17e.tar.xz PSP.git-b5324f48c855b0c82ccf6da7d5a008fe5cf1c17e.zip |
Start Power Line implementation
gogogogo
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 3080703..a104ec5 100644 --- a/Project/Element.h +++ b/Project/Element.h @@ -41,6 +41,7 @@ class Element double GetAngle() const { return m_angle; } bool IsPickboxShown() const { return m_showPickbox; } // Pure-virtuals methods + virtual void Insert(Element* parent, wxPoint2DDouble position) = 0; virtual void Draw(wxPoint2DDouble translation, double scale) const = 0; virtual void Rotate() = 0; virtual bool Contains(wxPoint2DDouble position) const = 0; |