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

class Location
{
    public:
        Location(){x=0;y=0;}
        int x;
        int y;
};

#endif