X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=otk%2Fpoint.hh;h=edccbe1a7f44fd7d82398da3dcfb41dfffee608e;hb=9f1facd3a167508906f1a2911d2ed7f0010967bb;hp=2c6d334c0347db7484a4a426c7fc1eaf88516b7f;hpb=c5e4a185887911ca743d6105700d79cb3bf64ab6;p=chaz%2Fopenbox diff --git a/otk/point.hh b/otk/point.hh index 2c6d334c..edccbe1a 100644 --- a/otk/point.hh +++ b/otk/point.hh @@ -31,6 +31,9 @@ public: void setY(int x) { _x = x; } //! Returns the y value int y() const { return _x; } + + //! Changes the x and y values + void setPoint(int x, int y) { _x = x; _y = y; } }; }