aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/math/rect.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/math/rect.h')
-rw-r--r--src/libjin/math/rect.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/libjin/math/rect.h b/src/libjin/math/rect.h
new file mode 100644
index 0000000..79c1df2
--- /dev/null
+++ b/src/libjin/math/rect.h
@@ -0,0 +1,15 @@
+#ifndef __JIN_RECT_H
+#define __JIN_RECT_H
+
+namespace jin
+{
+namespace math
+{
+ class Rect
+ {
+ public:
+ int x, y, w, h;
+ };
+}
+}
+#endif \ No newline at end of file