ChessNut/engine/core/cell.hpp
2025-10-13 23:10:11 +02:00

16 lines
No EOL
211 B
C++

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