summaryrefslogtreecommitdiff
path: root/inc/location.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/location.hpp')
-rw-r--r--inc/location.hpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/inc/location.hpp b/inc/location.hpp
deleted file mode 100644
index 5392e9b..0000000
--- a/inc/location.hpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef location_h
-#define location_h
-
-class Location
-{
- public:
- Location(int x1, int y1){x=x1;y=y1;};
- Location(){x=y=0;};
- int x;
- int y;
-};
-
-#endif