summaryrefslogtreecommitdiff
path: root/inc/Location.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/Location.hpp')
-rw-r--r--inc/Location.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/Location.hpp b/inc/Location.hpp
index 5c6f1ea..ed0e2db 100644
--- a/inc/Location.hpp
+++ b/inc/Location.hpp
@@ -5,6 +5,7 @@ class Location
{
public:
Location(){x=0;y=0;}
+ Location(int xn, int yn){x=xn;y=yn;}
int x;
int y;
};