aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/math/quad.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/math/quad.h')
-rw-r--r--src/libjin/math/quad.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/libjin/math/quad.h b/src/libjin/math/quad.h
index 5bda125..4c4246e 100644
--- a/src/libjin/math/quad.h
+++ b/src/libjin/math/quad.h
@@ -3,29 +3,29 @@
namespace JinEngine
{
- namespace Math
- {
+ namespace Math
+ {
- ///
- ///
- ///
- struct Quad
- {
- Quad()
- : x(0), y(0), w(0), h(0)
- {
- }
+ ///
+ ///
+ ///
+ struct Quad
+ {
+ Quad()
+ : x(0), y(0), w(0), h(0)
+ {
+ }
- Quad(float _x, float _y, float _w, float _h)
- : x(_x), y(_y), w(_w), h(_h)
- {
- }
+ Quad(float _x, float _y, float _w, float _h)
+ : x(_x), y(_y), w(_w), h(_h)
+ {
+ }
- float x, y, w, h;
+ float x, y, w, h;
- };
+ };
- } // namespace Math
+ } // namespace Math
} // namespace JinEngine
#endif // __JE_QUAD_H__ \ No newline at end of file