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

class Location
{
    public:
        int x;
        int y;
};

#endif