#ifndef CELL_HPP #define CELL_HPP #include "piece.hpp" #include #include namespace engine { struct Cell { std::optional> pieceId; }; } // namespace engine #endif