aboutsummaryrefslogtreecommitdiffstats
path: root/include/common.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/common.hpp')
-rw-r--r--include/common.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/common.hpp b/include/common.hpp
index 310bf7f..9211d56 100644
--- a/include/common.hpp
+++ b/include/common.hpp
@@ -98,6 +98,11 @@ struct _vec2 {
bool operator==(const _vec2 &v) {
return (x == v.x) && (y == v.y);
}
+ template<typename T>
+ const _vec2 operator=(const T &n) {
+ x = y = n;
+ return *this;
+ }
};
typedef struct _vec2 vec2;