From 08708d80209d0b2cebc8f5f849a9b66e34202d6f Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 7 Mar 2017 18:17:51 -0500 Subject: attacks? --- include/vector2.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/vector2.hpp') 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) + ")"; -- cgit v1.2.3