aboutsummaryrefslogtreecommitdiffstats
path: root/include/vector2.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-03-07 18:17:51 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-03-07 18:17:51 -0500
commit08708d80209d0b2cebc8f5f849a9b66e34202d6f (patch)
treedae3bcdfcb8d1a83642b59c0c15760e3d3565062 /include/vector2.hpp
parentbd80053588a9a38c9f7a1f132d36fb0844b91af4 (diff)
attacks?
Diffstat (limited to 'include/vector2.hpp')
-rw-r--r--include/vector2.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/vector2.hpp b/include/vector2.hpp
index c1148da..828654c 100644
--- a/include/vector2.hpp
+++ b/include/vector2.hpp
@@ -84,6 +84,10 @@ struct vector2 {
return (x < v.x) && (y < v.y);
}
+ bool operator<=(const T& n) const {
+ return (x <= n) && (y <= n);
+ }
+
// other functions
std::string toString(void) const {
return "(" + std::to_string(x) + ", " + std::to_string(y) + ")";