Some-Shooter-Mooter/source/point.cpp
2014-04-11 00:10:47 +03:00

19 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;
}