summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/Math
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-02-26 08:48:54 +0800
committerchai <chaifix@163.com>2019-02-26 08:48:54 +0800
commit3f457498b9c39d40a16a0ec6328880854f8cf4de (patch)
tree061ef9974b4da4c472909a65e6ebd10e8156c1b3 /Source/Asura.Engine/Math
parent684f71790401727cc45f4dad1822ddae46305072 (diff)
*misc
Diffstat (limited to 'Source/Asura.Engine/Math')
-rw-r--r--Source/Asura.Engine/Math/Rect.cpp0
-rw-r--r--Source/Asura.Engine/Math/Rect.h17
2 files changed, 17 insertions, 0 deletions
diff --git a/Source/Asura.Engine/Math/Rect.cpp b/Source/Asura.Engine/Math/Rect.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/Source/Asura.Engine/Math/Rect.cpp
diff --git a/Source/Asura.Engine/Math/Rect.h b/Source/Asura.Engine/Math/Rect.h
new file mode 100644
index 0000000..5dd8631
--- /dev/null
+++ b/Source/Asura.Engine/Math/Rect.h
@@ -0,0 +1,17 @@
+#ifndef __ASURA_ENGINE_RECT_H__
+#define __ASURA_ENGINE_RECT_H__
+
+namespace AsuraEngine
+{
+ namespace Math
+ {
+
+ struct Rect
+ {
+ int x, y, w, h;
+ };
+
+ }
+}
+
+#endif \ No newline at end of file