From 7f79b2e216617ff74ebd41ac02663b20ef3d0904 Mon Sep 17 00:00:00 2001 From: tom Date: Sat, 21 Nov 2015 12:30:13 -0600 Subject: began adding collision *added a location class for ease *much refractoring needed to fully implement it* --- inc/Location.hpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 inc/Location.hpp (limited to 'inc/Location.hpp') diff --git a/inc/Location.hpp b/inc/Location.hpp new file mode 100644 index 0000000..458e77e --- /dev/null +++ b/inc/Location.hpp @@ -0,0 +1,11 @@ +#ifndef location_h +#define location_h + +class Location +{ + public: + int x; + int y; +}; + +#endif -- cgit v1.2.3