summary refs log tree commit diff stats
path: root/src/components/transformable.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/transformable.h')
-rw-r--r--src/components/transformable.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/transformable.h b/src/components/transformable.h index 87ba84d..69f4f0e 100644 --- a/src/components/transformable.h +++ b/src/components/transformable.h
@@ -6,17 +6,17 @@
6class TransformableComponent : public Component { 6class TransformableComponent : public Component {
7 public: 7 public:
8 TransformableComponent(double x, double y, int w, int h); 8 TransformableComponent(double x, double y, int w, int h);
9 9
10 double getX() const; 10 double getX() const;
11 double getY() const; 11 double getY() const;
12 int getW() const; 12 int getW() const;
13 int getH() const; 13 int getH() const;
14 14
15 void setX(double v); 15 void setX(double v);
16 void setY(double v); 16 void setY(double v);
17 void setW(int v); 17 void setW(int v);
18 void setH(int v); 18 void setH(int v);
19 19
20 private: 20 private:
21 double x; 21 double x;
22 double y; 22 double y;