[WIP] Frames

This commit is contained in:
Tobias Dahl
2014-03-13 20:59:25 +01:00
parent 53c7609e11
commit 8f18fc87e3
5 changed files with 103 additions and 28 deletions
+8
View File
@@ -22,6 +22,14 @@ public:
int Y() const { return y; }
void Y(int val) { y = val; }
int Left() const { return x; }
int Right() const { return x+width; }
int Top() const { return y; }
int Bottom() const { return y+height; }
};
Rectangle::Rectangle()