13 lines
219 B
C
13 lines
219 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
|