#pragma once #include #include struct Map { using Coordinates = std::pair; Cell* At(int32_t aX, int32_t aY) noexcept; private: TiltedPhoques::Map m_cells; };