#pragma once

class Point
{
public:
    Point(float x, float y)
    {
        this->_x = x;
        this->_y = y;
    }

    float x() const { return this->_x; }
    float y() const { return this->_y; }

    void move(float x, float y);
    float abs() const;

private:
    float _x;
    float _y;
};

