Some-Shooter-Mooter/source/point.cpp
2014-03-16 13:40:52 +02:00

15 lines
170 B
C++

#include "point.h"
int Point::getY() const {
return y_;
}
int Point::getX() const {
return x_;
}
void Point::setX(int x) {
x_=x;
}
void Point::setY(int y) {
y_=y;
}