diff options
Diffstat (limited to 'src/render/rect.h')
-rw-r--r-- | src/render/rect.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/render/rect.h b/src/render/rect.h new file mode 100644 index 0000000..56b5bd1 --- /dev/null +++ b/src/render/rect.h @@ -0,0 +1,12 @@ +#ifndef __JIN_RECT_H +#define __JIN_RECT_H + +namespace jin +{ +class Rect +{ +public: + int x, y, w, h; +}; +}// jin +#endif
\ No newline at end of file |