summaryrefslogtreecommitdiff
path: root/inc/location.hpp
diff options
context:
space:
mode:
authortom <tombarrett@siu.edu>2017-01-14 11:56:33 -0600
committertom <tombarrett@siu.edu>2017-01-14 11:56:33 -0600
commitf2f0867edd0d9624a77e4e5db39825b8ea1a55d0 (patch)
tree1ead1fa412bd7c2e791310c7cb7bbe84c79696a4 /inc/location.hpp
parentb97a54b8acd113e99871fdb0f683e27e0912bf42 (diff)
completly remove location structure and replaced it with sdl_rect
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