12 lines
183 B
C++
12 lines
183 B
C++
#ifndef COORDINATE_H
|
|
#define COORDINATE_H
|
|
class Coordinate {
|
|
public:
|
|
Coordinate();
|
|
Coordinate(const double X, const double Y);
|
|
|
|
double x;
|
|
double y;
|
|
};
|
|
|
|
#endif // COORDINATE_H
|