#pragma once

namespace ui
{
    /**
     * @brief A point in 2D space.
     */
    struct Point
    {
        int x { 0 };
        int y { 0 };
    };
}