summaryrefslogtreecommitdiff
path: root/engine/include
diff options
context:
space:
mode:
Diffstat (limited to 'engine/include')
-rw-r--r--engine/include/kurator/engine/Point.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/engine/include/kurator/engine/Point.h b/engine/include/kurator/engine/Point.h
index 3dc0c8b..4b352d6 100644
--- a/engine/include/kurator/engine/Point.h
+++ b/engine/include/kurator/engine/Point.h
@@ -21,6 +21,8 @@ struct Point
Point operator+(const Point& other) const;
Point subtract(const Point& other) const;
Point subtract(double _x, double _y) const;
+ bool operator==(const Point& other) const;
+ bool operator!=(const Point& other) const;
};