struct MyPoint { int m_X{}; int m_Y{}; }; struct MySize { int m_Width{}; int m_Height{}; }; struct MyRect { MyPoint m_TopLeft{}; MySize m_Size{}; };