16 lines
No EOL
213 B
C++
16 lines
No EOL
213 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>> pieceId;
|
|
};
|
|
|
|
} // namespace engine
|
|
|
|
#endif |