Files
makefile_cpp/Make/2048/headers/gameboard-graphics.hpp
2023-04-13 14:02:08 +08:00

17 lines
257 B
C++

#ifndef GAMEBOARDGRAPHICS_H
#define GAMEBOARDGRAPHICS_H
#include <string>
namespace Game {
struct GameBoard;
namespace Gameboard {
namespace Graphics {
std::string GameBoardTextOutput(GameBoard gb);
}
} // namespace Gameboard
} // namespace Game
#endif