mirror of
https://gitee.com/yanmu_ym/cpp.git
synced 2026-02-08 20:13:16 +08:00
17 lines
257 B
C++
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
|