summaryrefslogtreecommitdiff
path: root/inc/location.hpp
blob: 6a20b4ee9068f5f1b3636cc62501ab9327a4dcf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef location_h
#define location_h

class Location
{
  public:
    Location(){x=y=t=0;};
	  Location(int x1, int y1, int t1){x=x1;y=y1;t=t1;};

    int x;
	  int y;
	  int t;
};

#endif