summaryrefslogtreecommitdiff
path: root/inc/location.hpp
blob: 5392e9b7c74b210bbadf17b37ad4bbbc58d69312 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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