diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-08-03 17:43:25 -0300 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-08-03 17:43:25 -0300 |
commit | 46c9d3fe586fb5c8ac75384b62a79971f96a5b88 (patch) | |
tree | 686264564945c68f788887a2745f08f8bb3f0926 /Project/Bus.h | |
parent | 0b720e578e0e91262e04651ce81cd2e7f6828967 (diff) | |
download | PSP.git-46c9d3fe586fb5c8ac75384b62a79971f96a5b88.tar.gz PSP.git-46c9d3fe586fb5c8ac75384b62a79971f96a5b88.tar.xz PSP.git-46c9d3fe586fb5c8ac75384b62a79971f96a5b88.zip |
Bus implemented, selection not working
Selection to move fail
Diffstat (limited to 'Project/Bus.h')
-rw-r--r-- | Project/Bus.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Project/Bus.h b/Project/Bus.h index 6725fd7..095a72d 100644 --- a/Project/Bus.h +++ b/Project/Bus.h @@ -6,11 +6,12 @@ class Bus : public Element { public: + Bus(); Bus(wxPoint2DDouble position); ~Bus(); virtual bool Contains(wxPoint2DDouble position) const; virtual void Draw(wxPoint2DDouble translation, double scale) const; - virtual void Rotate(); + virtual void Rotate(); virtual wxCursor GetBestPickboxCursor() const; virtual void MovePickbox(wxPoint2DDouble position); virtual bool PickboxContains(wxPoint2DDouble position); |