16 lines
No EOL
176 B
C++
16 lines
No EOL
176 B
C++
#ifndef CELL_HPP
|
|
#define CELL_HPP
|
|
|
|
#include <optional>
|
|
|
|
namespace engine {
|
|
|
|
struct PieceId;
|
|
|
|
struct Cell {
|
|
std::optional<PieceId> pieceId;
|
|
};
|
|
|
|
} // namespace engine
|
|
|
|
#endif |