diff options
Diffstat (limited to 'inc/location.hpp')
| -rw-r--r-- | inc/location.hpp | 17 | 
1 files changed, 17 insertions, 0 deletions
diff --git a/inc/location.hpp b/inc/location.hpp new file mode 100644 index 0000000..c4428f5 --- /dev/null +++ b/inc/location.hpp @@ -0,0 +1,17 @@ +#ifndef location_h +#define location_h + +class Location +{ +  public: +    Location(){x=y=t=0;}; +	  Location(int x, int y, int z){}; +    int getType(){return t;}; +     +  private: +    int x; +	  int y; +	  int t; +}; + +#endif  | 
