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