summaryrefslogtreecommitdiff
path: root/inc/location.hpp
blob: c4428f5a9f32d7ad82fe092d1118fb825ba96463 (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