#pragma once #include struct Size { std::size_t Cols{}; std::size_t Rows{}; }; struct Coord { std::size_t X{}; std::size_t Y{}; };