module libs.utils.point;

/**
*   Used for point objects with x & y coordinates.
*/
class Point 
{
    double x, y;

    this(float a, float b) {
        x = a;
        y = b;
    }
}